isMobile function

bool isMobile(
  1. String value
)

Implementation

bool isMobile(String value) {
  return _regex(r'^1\d{10}$', value);
}