AFieldMoney constructor
const
AFieldMoney({
- Key? key,
- void onChanged()?,
- bool readOnly = false,
- bool required = false,
- Iterable<
String> ? autofillHints, - IconData? icon,
- String? label,
- Widget? suffix,
- Widget? bottom,
- String? leftSymbol,
- int precision = 2,
- bool denySpaces = false,
- String? hintText,
- required String identifier,
- String? initialValue = "",
- int? flexible,
- bool expanded = false,
- void onUnfocus()?,
- EdgeInsets? margin,
- bool autofocus = false,
- bool capitalize = false,
- bool clearable = false,
- List<
ARule< ? customRules,String> > - double height = 46,
- bool linkToAForm = true,
- VoidCallback? onSubmit,
- EdgeInsets? padding,
- bool readonly = false,
Implementation
const AFieldMoney({
super.key,
super.onChanged,
super.readOnly,
super.required,
super.autofillHints,
super.icon,
super.label,
super.suffix,
super.bottom,
this.leftSymbol,
this.precision = 2,
super.denySpaces,
super.hintText,
required super.identifier,
super.initialValue = "",
super.flexible,
super.expanded,
super.onUnfocus,
super.margin,
super.autofocus,
super.capitalize,
super.clearable,
super.customRules,
super.height,
super.linkToAForm,
super.onSubmit,
super.padding,
super.readonly,
}) : super(
keyboardType: TextInputType.number,
);