ScaleButtonWithIcon constructor

const ScaleButtonWithIcon({
  1. Key? key,
  2. required IconData icon,
  3. double? height,
  4. double? width,
  5. double? radius,
  6. double? iconSize,
  7. String? label,
  8. TextStyle? textStyle,
  9. VoidCallback? onPressed,
  10. Color? iconColor,
  11. Color? buttonColor,
})

Implementation

const ScaleButtonWithIcon({
  Key? key,
  required this.icon,
  this.height,
  this.width,
  this.radius,
  this.iconSize,
  this.label,
  this.textStyle,
  this.onPressed,
  this.iconColor,
  this.buttonColor,
}) : super(key: key);