isZwMobile method

bool isZwMobile(
  1. String value
)

Checks if a string is a valid Zimbabwean mobile number registered under the top 3 mobile network providers

Implementation

bool isZwMobile(String value) =>
    this.isEconet(value) || this.isNetone(value) || this.isTelecel(value);