cvvValue property

String? get cvvValue

Implementation

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

Implementation

set cvvValue(String? value) {
  this.setData(this.formValueMap..addAll({CvvValueKey: value}));

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