amountValue property

String? get amountValue

Implementation

String? get amountValue => this.formValueMap[AmountValueKey] as String?;
set amountValue (String? value)

Implementation

set amountValue(String? value) {
  this.setData(this.formValueMap..addAll({AmountValueKey: value}));

  if (_PaymentFormTextEditingControllers.containsKey(AmountValueKey)) {
    _PaymentFormTextEditingControllers[AmountValueKey]?.text = value ?? '';
  }
}