CustomLoader constructor

const CustomLoader({
  1. Key? key,
  2. required bool inAsyncCall,
  3. double opacity = 0.3,
  4. Color color = Colors.black,
  5. Offset? offset,
  6. bool dismissible = false,
  7. required Widget child,
  8. double blur = 0.0,
})

Implementation

const CustomLoader({
  Key? key,
  required this.inAsyncCall,
  this.opacity = 0.3,
  this.color = Colors.black,
  /* this.progressIndicator = const CircularProgressIndicator(
    color: AppColors.themeColor,
  ),*/
  this.offset,
  this.dismissible = false,
  required this.child,
  this.blur = 0.0,
}) : super(key: key);