isVisaCardBool static method

bool isVisaCardBool(
  1. String? value
)

Implementation

static bool isVisaCardBool(String? value) {
  final inputValue = value ?? "";
  return _visaCardRegex.hasMatch(inputValue);
}