maskMobile property

String get maskMobile

Implementation

String get maskMobile {
  if (isNullOrEmpty) return this ?? '';
  final str = this!;
  if (str.length != 11) return str;
  return '${str.substring(0, 3)}****${str.substring(7)}';
}