GridButton constructor

const GridButton({
  1. Key? key,
  2. required List<List<GridButtonItem>> items,
  3. required ValueChanged onPressed,
  4. Color? borderColor,
  5. TextStyle? textStyle,
  6. TextDirection? textDirection,
  7. double borderWidth = 1.0,
  8. bool hideSurroundingBorder = false,
  9. bool enabled = true,
})

Implementation

const GridButton(
    {Key? key,
    required this.items,
    required this.onPressed,
    this.borderColor,
    this.textStyle,
    this.textDirection,
    this.borderWidth = 1.0,
    this.hideSurroundingBorder = false,
    this.enabled = true})
    : super(key: key);