mobilePhone property

MaskTextInputFormatter mobilePhone
final

Mask pattern for celular (mobile phone) numbers.

Implementation

static final mobilePhone = MaskTextInputFormatter(
  mask: '(##) #####-####',
  filter: {"#": RegExp(r'[0-9]')},
);