FlipWidget constructor

const FlipWidget({
  1. Key? key,
  2. required Widget frontChild,
  3. required Widget backChild,
  4. double? indexX,
  5. double? indexY,
  6. int indexLeft = 0,
})

Implementation

const FlipWidget(
    {Key? key,
    required this.frontChild,
    required this.backChild,
    this.indexX,
    this.indexY,
    this.indexLeft = 0})
    : super(key: key);