OverLayAnimation constructor

OverLayAnimation({
  1. required bool isLoading,
  2. required Widget child,
  3. double opacity = 0.5,
  4. Widget progressIndicator = const CircularProgressIndicator(),
  5. Color? color,
})

Implementation

OverLayAnimation({
  required this.isLoading,
  required this.child,
  this.opacity = 0.5,
  this.progressIndicator = const CircularProgressIndicator(),
  this.color,
});