Delayed<T> constructor

const Delayed<T>({
  1. Key? key,
  2. required Widget child,
  3. required Duration duration,
  4. bool showLoading = true,
  5. Widget? loadingWidget,
  6. Color backgroundColor = Colors.black,
})

Implementation

const Delayed({
  super.key,
  required this.child,
  required this.duration,
  this.showLoading = true,
  this.loadingWidget,
  this.backgroundColor = Colors.black,
});