Delayed constructor

const Delayed({
  1. Duration delay = const Duration(seconds: 10),
  2. required Widget child,
  3. Key? key,
})

Implementation

const Delayed({
  this.delay = const Duration(seconds: 10),
  required this.child,
  Key? key,
}) : super(key: key);