validateCountryCode1 method

bool validateCountryCode1()

Implementation

bool validateCountryCode1() {
  return RegExp(r'^([+]).{1,}$').hasMatch(this);
}