BaseSplashController<T extends IconTemplateModel> constructor

BaseSplashController<T extends IconTemplateModel>({
  1. String? backgroundColor,
  2. required Image customSourceImage,
  3. double? resizePercentage,
})

Implementation

BaseSplashController({this.backgroundColor, required this.customSourceImage, double? resizePercentage})
    : assert(resizePercentage == null || resizePercentage <= 2),
      resizePercentage = resizePercentage ?? 1;