phone property

Implementation

static List<TextInputFormatter> get phone => [
      noWhitespace,
      FilteringTextInputFormatter.allow(
        RegExp(r"^(\+?)[0-9]*"),
      )
    ];