phoneMaskWithoutCountryCode property

String phoneMaskWithoutCountryCode

Implementation

String get phoneMaskWithoutCountryCode {
  if (_maskWithoutCountryCode != null) {
    return _maskWithoutCountryCode!;
  }
  _maskWithoutCountryCode = _trimPhoneCode(
    phoneMask: phoneMask!,
    phoneCode: phoneCode!,
  );
  return _maskWithoutCountryCode!;
}