LoadingWidget constructor

const LoadingWidget({
  1. Key? key,
  2. required Widget child,
  3. Duration? duration,
  4. Curve? curve,
  5. List<Color>? colorGradient,
})

Implementation

const LoadingWidget({
  Key? key,
  required this.child,
  this.duration,
  this.curve,
  this.colorGradient,
}) : super(key: key);