IOSSplashController.custom constructor

  1. @experimental
IOSSplashController.custom({
  1. required String backgroundColor,
  2. required Image customSourceImage,
  3. required double resizePercentage,
  4. ErrorHandler? errorHandler,
  5. String? rootPath,
})

Implementation

@experimental
IOSSplashController.custom(
    {required String backgroundColor,
      required Image customSourceImage,
      required double resizePercentage,
      ErrorHandler? errorHandler,
      String? rootPath})
    : super.custom(
    backgroundColor: backgroundColor,
    customSourceImage: customSourceImage,
    errorHandler: errorHandler,
    rootPath: rootPath,
    resizePercentage: resizePercentage);