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