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