altMasksWithoutCountryCodes property
Implementation
List<String>? get altMasksWithoutCountryCodes {
if (_altMasksWithoutCountryCodes != null) {
return _altMasksWithoutCountryCodes;
}
_altMasksWithoutCountryCodes = altMasks
?.map((e) => _trimPhoneCode(phoneMask: e, phoneCode: phoneCode!))
.toList() ??
<String>[];
return _altMasksWithoutCountryCodes;
}