isNetone static method

bool isNetone(
  1. String value
)

Checks if a string is a valid Netone mobile number

Implementation

static bool isNetone(String value) =>
    _isValid(value.replaceAll(RegExp('\\s+'), ""), _netone);