FCClockCompletion constructor

const FCClockCompletion({
  1. Key? key,
  2. Color backgroundColor = Colors.black,
  3. Color loaderColor = Colors.white,
  4. Duration duration = const Duration(milliseconds: 2000),
  5. Curve curve = Curves.linearToEaseOut,
})

Implementation

const FCClockCompletion({
  Key? key,
  this.backgroundColor = Colors.black,
  this.loaderColor = Colors.white,
  this.duration = const Duration(milliseconds: 2000),
  this.curve = Curves.linearToEaseOut,
}) : super(key: key);