MaterialButtonCell constructor

const MaterialButtonCell({
  1. Key? key,
  2. VoidCallback? onTap,
  3. String? label,
  4. Color? textColor,
  5. Color? borderColor,
  6. Color? color,
  7. double height = 45,
  8. Widget? child,
  9. double? miniWidth,
  10. double radius = 8,
  11. double sideWidth = 1,
  12. double fontSize = 14,
  13. BorderRadiusGeometry? borderRadius,
})

Implementation

const MaterialButtonCell({
  Key? key,
  this.onTap,
  this.label,
  this.textColor,
  this.borderColor,
  this.color,
  this.height = 45,
  this.child,
  this.miniWidth,
  this.radius = 8,
  this.sideWidth = 1,
  this.fontSize = 14,
  this.borderRadius,
}) : super(key: key);