cardAddress static method

String? cardAddress(
  1. String? cardAddress, {
  2. TextValidateResponse? textResponse,
})

Implementation

static String? cardAddress(String? cardAddress,
    {TextValidateResponse? textResponse}) {
  return _validateInput(cardAddress, RegularExpression.validateCardAddress,
      textResponse, 'Card address');
}