BloomAppConfig constructor
const
BloomAppConfig({
- int schema = 1,
- required String name,
- String version = '0.1.0',
- String buildNumber = '1',
- String description = '',
- NativeMode mode = NativeMode.managed,
- PlatformsConfig platforms = const PlatformsConfig(),
- List<
BloomPlugin> plugins = const [], - List<
String> envFiles = const ['.env', '.env.local'], - Map<
String, dynamic> featureFlags = const {}, - Map<
String, dynamic> custom = const {},
Creates a BloomAppConfig instance.
Implementation
const BloomAppConfig({
this.schema = 1,
required this.name,
this.version = '0.1.0',
this.buildNumber = '1',
this.description = '',
this.mode = NativeMode.managed,
this.platforms = const PlatformsConfig(),
this.plugins = const [],
this.envFiles = const ['.env', '.env.local'],
this.featureFlags = const {},
this.custom = const {},
});