onlyNumbersDotsAndCommas property
String
get
onlyNumbersDotsAndCommas
Implementation
String get onlyNumbersDotsAndCommas {
if (isBlank) {
return blankIfNull;
}
return only([...numberChars, '.', ","]);
}