Config constructor

const Config({
  1. String? imagePath,
  2. dynamic android = false,
  3. dynamic ios = false,
  4. String? imagePathAndroid,
  5. String? imagePathIOS,
  6. String? adaptiveIconForeground,
  7. String? adaptiveIconBackground,
  8. int minSdkAndroid = constants.androidDefaultAndroidMinSDK,
  9. bool removeAlphaIOS = false,
  10. WebConfig? webConfig,
  11. WindowsConfig? windowsConfig,
  12. MacOSConfig? macOSConfig,
})

Creates an instance of Config

Implementation

const Config({
  this.imagePath,
  this.android = false,
  this.ios = false,
  this.imagePathAndroid,
  this.imagePathIOS,
  this.adaptiveIconForeground,
  this.adaptiveIconBackground,
  this.minSdkAndroid = constants.androidDefaultAndroidMinSDK,
  this.removeAlphaIOS = false,
  this.webConfig,
  this.windowsConfig,
  this.macOSConfig,
});