matches method

bool matches(
  1. String normalizedNumber
)

Does given normalizedNumber matches this country.

Implementation

bool matches(String normalizedNumber) =>
    normalizedNumber.startsWith(_prefixStr);