id property

int get id

Implementation

int get id {
  switch (this) {
    case AppTheme.automatic:
      return 0;
    case AppTheme.dark:
      return 1;
    case AppTheme.light:
      return 2;
  }
}