ScaleButton constructor

const ScaleButton({
  1. Key? key,
  2. required String label,
  3. required VoidCallback onPressed,
  4. double? height,
  5. double? width,
  6. double? radius,
  7. TextStyle? style,
  8. Color? color,
})

Implementation

const ScaleButton({
  Key? key,
  required this.label,
  required this.onPressed,
  this.height,
  this.width,
  this.radius,
  this.style,
  this.color,
}) : super(key: key);