AnimationLoadProgress constructor

const AnimationLoadProgress({
  1. Key? key,
  2. required bool inAsyncCall,
  3. double opacity = 0.3,
  4. Color color = Colors.grey,
  5. bool dismissible = false,
  6. required Widget child,
  7. required double height,
  8. required double width,
  9. required List<Color> colorList,
})

Implementation

const AnimationLoadProgress({
  Key? key,
  required this.inAsyncCall,
  this.opacity = 0.3,
  this.color = Colors.grey,
  this.dismissible = false,
  required this.child,
  required this.height,
  required this.width,
  required this.colorList,
})  : assert(child != null),
      assert(inAsyncCall != null),
      super(key: key);