Preloader constructor

const Preloader({
  1. Key? key,
  2. List<Reference>? firebaseRefs,
  3. List<String>? imageAssets,
  4. List<String>? imageUrls,
  5. required Widget child,
  6. ErrorEvent? onError,
  7. SuccessEvent? onSuccess,
  8. LoaderBuilder? loader,
})

Implementation

const Preloader({
  super.key,
  this.firebaseRefs,
  this.imageAssets,
  this.imageUrls,
  required this.child,
  this.onError,
  this.onSuccess,
  this.loader,
});