FCDualRipple constructor

const FCDualRipple({
  1. Key? key,
  2. Color backgroundColor = Colors.black,
  3. Color loaderColor = Colors.white,
  4. Duration duration = const Duration(milliseconds: 700),
  5. Curve curve1 = Curves.easeIn,
  6. Curve curve2 = Curves.easeIn,
})

Implementation

const FCDualRipple({
  Key? key,
  this.backgroundColor = Colors.black,
  this.loaderColor = Colors.white,
  this.duration = const Duration(milliseconds: 700),
  this.curve1 = Curves.easeIn,
  this.curve2 = Curves.easeIn,
}) : super(key: key);