FlipCard constructor
const
FlipCard({
- Key? key,
- required Widget frontCard,
- required Widget backCard,
- FlipCardController? controller,
- RotateFrom rotateFrom = RotateFrom.left,
- Duration duration = const Duration(milliseconds: 500),
- bool tapToFlipping = false,
- Color? focusColor,
- Color? splashColor,
- bool disableSplashEffect = false,
Implementation
const FlipCard({
super.key,
required this.frontCard,
required this.backCard,
this.controller,
this.rotateFrom = RotateFrom.left,
this.duration = const Duration(milliseconds: 500),
this.tapToFlipping = false,
this.focusColor,
this.splashColor,
this.disableSplashEffect = false,
});