FdcValidationCodes class

Stable validation error codes emitted by built-in dataset validators.

Applications may use these codes to map validation failures to localized messages, custom UI treatment, analytics, or backend-compatible validation payloads without parsing human-readable error text. Custom validators may use their own codes; these constants identify only the built-in validation rules.

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

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.
inherited

Constants

maxValue → const String
Emitted when a numeric field value is above its configured maximum.
minValue → const String
Emitted when a numeric field value is below its configured minimum.
nonFiniteNumber → const String
Emitted when a numeric field contains a non-finite value such as NaN or infinity.
requiredField → const String
Emitted when a field marked required has no accepted value.