BloomConfig constructor
const
BloomConfig({
- int schema = 1,
- String name = 'bloom_app',
- String version = '0.1.0',
- String buildNumber = '1',
- String description = '',
- String mode = 'managed',
- BloomPlatforms platforms = const BloomPlatforms(),
- BloomFeatures features = const BloomFeatures(),
- BloomDeepLinksConfig deepLinks = const BloomDeepLinksConfig(),
- BloomDeploymentConfig deployment = const BloomDeploymentConfig(),
- List<
String> envFiles = const ['.env', '.env.local'], - Map<
String, BloomFlavorConfig> flavors = const {}, - Map<
String, dynamic> plugins = const {}, - Map<
String, dynamic> custom = const {},
Creates a BloomConfig instance with default values.
Implementation
const BloomConfig({
this.schema = 1,
this.name = 'bloom_app',
this.version = '0.1.0',
this.buildNumber = '1',
this.description = '',
this.mode = 'managed',
this.platforms = const BloomPlatforms(),
this.features = const BloomFeatures(),
this.deepLinks = const BloomDeepLinksConfig(),
this.deployment = const BloomDeploymentConfig(),
this.envFiles = const ['.env', '.env.local'],
this.flavors = const {},
this.plugins = const {},
this.custom = const {},
});