BaseSplashController<T extends IconTemplateModel>.custom constructor

BaseSplashController<T extends IconTemplateModel>.custom({
  1. required String? backgroundColor,
  2. required Image customSourceImage,
  3. required double resizePercentage,
  4. dynamic errorHandler,
  5. dynamic rootPath,
})

Implementation

BaseSplashController.custom(
    {required this.backgroundColor, required this.customSourceImage, required this.resizePercentage, errorHandler, rootPath})
    : assert(resizePercentage <= 2),
      super.custom(errorHandler: errorHandler, rootPath: rootPath);