title property

String title

Implementation

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