FCClockTransition constructor

const FCClockTransition({
  1. Key? key,
  2. Color clockColor = Colors.white,
  3. Color backgroundColor = Colors.black,
  4. double randomNoise = 10,
  5. Duration duration = const Duration(milliseconds: 2000),
  6. ClockAnimateType type = ClockAnimateType.scale,
})

Implementation

const FCClockTransition({
  Key? key,
  this.clockColor = Colors.white,
  this.backgroundColor = Colors.black,
  this.randomNoise = 10,
  this.duration = const Duration(milliseconds: 2000),
  this.type = ClockAnimateType.scale,
}) : super(key: key);