title property
Implementation
String get title {
switch (appFlavor) {
case Flavor.dev:
return 'dev';
case Flavor.stg:
return 'stg';
case Flavor.prod:
return 'prod';
default:
return 'title';
}
}
String get title {
switch (appFlavor) {
case Flavor.dev:
return 'dev';
case Flavor.stg:
return 'stg';
case Flavor.prod:
return 'prod';
default:
return 'title';
}
}