BloomPlatforms constructor

const BloomPlatforms({
  1. int androidMinSdk = 24,
  2. int androidTargetSdk = 34,
  3. String? androidPackage,
  4. String iosMinVersion = '15.0',
  5. String? iosBundleIdentifier,
  6. String webTitle = 'Bloom App',
})

Creates a BloomPlatforms configuration with platform defaults.

Implementation

const BloomPlatforms({
  this.androidMinSdk = 24,
  this.androidTargetSdk = 34,
  this.androidPackage,
  this.iosMinVersion = '15.0',
  this.iosBundleIdentifier,
  this.webTitle = 'Bloom App',
});