NumPad constructor
const
NumPad({
- Key? key,
- required void onType(
- String number
- MainAxisAlignment mainAxisAlignment = MainAxisAlignment.spaceBetween,
- EdgeInsets? padding,
- Widget? leftWidget,
- Widget? rightWidget,
- Color? highlightColor,
- double runSpace = 40,
- TextStyle? numberStyle,
- double? radius,
- bool? arabicDigits,
- 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);