isChineseMainland method

bool isChineseMainland(
  1. PhoneNumber phone
)

Is Chinese Mainland.

Implementation

bool isChineseMainland(PhoneNumber phone) {
  return phone.countryCode == 86 && phone.nationalNumber.trim().length == 11;
}