FilteringTextInputFormatter.deny constructor Null safety
Creates a formatter that blocks characters matching a pattern.
The filterPattern
and replacementString
arguments
must not be null.
Implementation
FilteringTextInputFormatter.deny(
this.filterPattern, {
this.replacementString = '',
}) : assert(filterPattern != null),
assert(replacementString != null),
allow = false;