buildAmountField method
Implementation
@protected
Widget buildAmountField() {
return FastNumberField(
captionText: amountCaptionText ?? kDefaultAmountCaptionText,
transformInvalidNumber: transformInvalidNumber,
suffixIcon: buildSwitchFieldMenuButton(),
placeholderText: amountPlaceholderText,
onValueChanged: onAmountValueChanged,
labelText: _getAmountLabel(),
valueText: amountValue,
isEnabled: isEnabled,
);
}