isPowertel static method

bool isPowertel(
  1. String value
)

Checks if a string is a valid Powertel VOIP number

Implementation

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