DefaultLoadingStyle constructor

const DefaultLoadingStyle({
  1. Color? loadingColor,
  2. Color? loadingBackgroundColor,
  3. double overlayOpacity = 0.5,
  4. Color? overlayColor,
  5. Widget? builder,
})

Implementation

const DefaultLoadingStyle({
  this.loadingColor,
  this.loadingBackgroundColor,
  this.overlayOpacity = 0.5,
  this.overlayColor,
  this.builder,
});