Config constructor
const
Config({
- String? imagePath,
- dynamic android = false,
- dynamic ios = false,
- String? imagePathAndroid,
- String? imagePathIOS,
- String? imagePathIOSDarkTransparent,
- String? imagePathIOSTintedGrayscale,
- String? adaptiveIconForeground,
- int adaptiveIconForegroundInset = 16,
- String? adaptiveIconBackground,
- String? adaptiveIconMonochrome,
- int minSdkAndroid = constants.androidDefaultAndroidMinSDK,
- bool removeAlphaIOS = false,
- bool desaturateTintedToGrayscaleIOS = false,
- String backgroundColorIOS = '#ffffff',
- WebConfig? webConfig,
- WindowsConfig? windowsConfig,
- MacOSConfig? macOSConfig,
Creates an instance of Config
Implementation
const Config({
this.imagePath,
this.android = false,
this.ios = false,
this.imagePathAndroid,
this.imagePathIOS,
this.imagePathIOSDarkTransparent,
this.imagePathIOSTintedGrayscale,
this.adaptiveIconForeground,
this.adaptiveIconForegroundInset = 16,
this.adaptiveIconBackground,
this.adaptiveIconMonochrome,
this.minSdkAndroid = constants.androidDefaultAndroidMinSDK,
this.removeAlphaIOS = false,
this.desaturateTintedToGrayscaleIOS = false,
this.backgroundColorIOS = '#ffffff',
this.webConfig,
this.windowsConfig,
this.macOSConfig,
});