formaters property

List<String> get formaters

A string mask to format input strings.

Example:

@override
List<String> get formaters => ["(##) ####-####"];
//input = "1122334455" | Output: "(11) 2233-4455"

This example demonstrates how to define and use a string mask for formatting input strings, such as phone numbers, dates, or other structured data.

Implementation

List<String> get formaters => [];