FlipCard constructor

const FlipCard({
  1. Key? key,
  2. required Widget front,
  3. required Widget back,
  4. Duration duration = const Duration(milliseconds: 600),
  5. bool flipHorizontal = true,
  6. bool autoFlip = true,
  7. bool initiallyFlipped = false,
})

Implementation

const FlipCard({
  super.key,
  required this.front,
  required this.back,
  this.duration = const Duration(milliseconds: 600),
  this.flipHorizontal = true,
  this.autoFlip = true,
  this.initiallyFlipped = false,
});