FlutterSplashController.custom constructor

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

Implementation

@experimental
FlutterSplashController.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);