phoneValidation method

bool phoneValidation(
  1. String phone
)

phone validation method, only 10 digits

Implementation

bool phoneValidation(String phone) {
  final RegExp regex = RegExp(
    r'^[0-9]{10}$',
  );
  return regex.hasMatch(phone);
}