isValidSSNNumber method

bool isValidSSNNumber()

Implementation

bool isValidSSNNumber() {
  return RegExp(r'^\d{3}-\d{2}-\d{4}$').hasMatch(this);
}