isVisaCardBool static method

bool isVisaCardBool(
  1. String? value
)

Implementation

static bool isVisaCardBool(String? value) {
  final inputValue = value ?? "";
  return inputValue.startsWith("4") && inputValue.length == 16;
}