GridButtonItem constructor

const GridButtonItem({
  1. Key? key,
  2. String? title,
  3. Color? color,
  4. TextStyle? textStyle,
  5. dynamic value,
  6. dynamic longPressValue,
  7. int flex = 1,
  8. double borderRadius = 0,
  9. Widget? child,
  10. BorderSide? shape,
  11. FocusNode? focusNode,
})

Implementation

const GridButtonItem({
  this.key,
  this.title,
  this.color,
  this.textStyle,
  this.value,
  this.longPressValue,
  this.flex = 1,
  this.borderRadius = 0,
  this.child,
  this.shape,
  this.focusNode,
});