getCorrectMask method

String getCorrectMask(
  1. String? countryCode
)

Implementation

String getCorrectMask(String? countryCode) {
  if (countryCode == null) {
    return phoneMask!;
  }
  return phoneMaskWithoutCountryCode;
}