checkIsAlphaWithRegEx method

bool checkIsAlphaWithRegEx()

Global.. Iban içerisindeki karakterlerin Metin olup olmadığını kontrol eder.

Implementation

bool checkIsAlphaWithRegEx() {
  final alphaNumericRegex = RegExp(r'^([A-Z]*)$', caseSensitive: true);
  return alphaNumericRegex.hasMatch(this);
}