FlavorConfig constructor

FlavorConfig({
  1. required String name,
  2. bool isProduction = false,
  3. Color color = Colors.brown,
  4. required Map<String, dynamic> attributes,
})

Implementation

FlavorConfig(
    {required this.name,
    this.isProduction = false,
    this.color = Colors.brown,
    required this.attributes})
    : _banner =
          FlavorBannerConfig(name, color: color, isProduction: isProduction);