validatePhoneWithCountryCode property

bool get validatePhoneWithCountryCode

Check phone validation with country code

Implementation

bool get validatePhoneWithCountryCode =>
    isEmptyOrNull ? false : hasMatch(this, r'(^(?:[+0]9)?[0-9]{10,12}$)');