NumPad constructor

const NumPad({
  1. Key? key,
  2. required void onType(
    1. String number
    ),
  3. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
  4. EdgeInsets? padding,
  5. Widget? leftWidget,
  6. Widget? rightWidget,
  7. Color? highlightColor,
  8. double runSpace = 40,
  9. TextStyle? numberStyle,
  10. double? radius,
  11. bool? arabicDigits,
  12. bool returnItAsEnglish = false,
})

Implementation

const NumPad({
  Key? key,
  required this.onType,
  this.mainAxisAlignment = MainAxisAlignment.spaceBetween,
  this.padding,
  this.leftWidget,
  this.rightWidget,
  this.highlightColor,
  this.runSpace = 40,
  this.numberStyle,
  this.radius,
  this.arabicDigits,
  this.returnItAsEnglish = false,
}) : super(key: key);