applyMask method

Future<String> applyMask(
  1. String value
)

Returns the masked value of the PaymentProductField.

Implementation

Future<String> applyMask(String value) async {
  return await PaymentProductFieldMasker.applyMask(this, value);
}