validateCity method

bool validateCity()

Implementation

bool validateCity() {
  return RegExp(r'^([0-9]{2}$)').hasMatch(this);
}