isValidZimMobile static method

bool isValidZimMobile(
  1. String value
)

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

Implementation

static bool isValidZimMobile(String value) =>
    isEconet(value) || isNetone(value) || isTelecel(value);