NumButton constructor

const NumButton({
  1. Key? key,
  2. required String number,
  3. required VoidCallback onTap,
  4. Color? highlightColor,
  5. TextStyle? numberStyle,
  6. double? radius,
  7. bool? arabicDigits = false,
})

Implementation

const NumButton({
  Key? key,
  required this.number,
  required this.onTap,
  this.highlightColor,
  this.numberStyle,
  this.radius,
  this.arabicDigits = false,
}) : super(key: key);