BaseGridAnswer constructor

const BaseGridAnswer({
  1. Key? key,
  2. required List<String> answers,
  3. required int indexCorrect,
  4. double screenPadding = 20,
  5. TextStyle? style,
  6. TextStyle? styleHepper,
  7. required Function onPressed,
  8. required Function onPressedHepler,
})

Implementation

const BaseGridAnswer(
    {Key? key,
    required this.answers,
    required this.indexCorrect,
    this.screenPadding = 20,
    this.style,
    this.styleHepper,
    required this.onPressed,
    required this.onPressedHepler})
    : super(key: key);