CardChildWidget constructor

const CardChildWidget({
  1. Key? key,
  2. required CardModel model,
  3. required dynamic handleVerticalUpdate(
    1. DragUpdateDetails
    ),
  4. required dynamic handleVerticalEnd(
    1. DragEndDetails
    ),
  5. required dynamic onCardTap(
    1. CardModel
    )?,
})

Implementation

const CardChildWidget({
  Key? key,
  required this.model,
  required this.handleVerticalUpdate,
  required this.handleVerticalEnd,
  required this.onCardTap,
}) : super(key: key);