FlipCardComponent constructor

const FlipCardComponent({
  1. Key? key,
  2. required Widget frontComponent,
  3. required Widget backComponent,
  4. required FlipCardComponentController controller,
  5. VoidCallback? onComplate,
  6. VoidCallback? onStartAnimate,
  7. ValueChanged<bool>? valueChanged,
})

Implementation

const FlipCardComponent(
    {super.key,
    required this.frontComponent,
    required this.backComponent,
    required this.controller,
    this.onComplate,
    this.onStartAnimate,
    this.valueChanged});