NormalizeOptions class

Constructors

NormalizeOptions({required bool trimValues, required bool normalizeWhitespace, required bool normalizeUnicode, required bool removeEmptyValues})
const

Properties

hashCode → int
The hash code for this object.
no setteroverride
normalizeUnicode → bool
Apply Unicode NFKC normalization (full compatibility decomposition + canonical composition).
final
normalizeWhitespace → bool
Collapse multiple whitespace characters into a single space.
final
removeEmptyValues → bool
Remove fields that are empty strings after normalization.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
trimValues → bool
Trim leading/trailing whitespace from all string fields.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
override

Static Methods

default_() → Future<NormalizeOptions>