BloomAppConfig constructor

const BloomAppConfig({
  1. int schema = 1,
  2. required String name,
  3. String version = '0.1.0',
  4. String buildNumber = '1',
  5. String description = '',
  6. NativeMode mode = NativeMode.managed,
  7. PlatformsConfig platforms = const PlatformsConfig(),
  8. List<BloomPlugin> plugins = const [],
  9. List<String> envFiles = const ['.env', '.env.local'],
  10. Map<String, dynamic> featureFlags = const {},
  11. 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 {},
});