ValidationError class

A validation error.

Constructors

ValidationError(int code, String message, String propertyName)
Creates a ValidationError from code, message, and propertyName.
const
ValidationError.fromJson(Map<String, dynamic> json)
Creates a ValidationError from JSON.

Properties

code int
Code of the validation error.
final
hashCode int
The hash code for this object.
no setterinherited
message String
Message describing the validation error.
final
propertyName String
Path to the property which caused the error.
final
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
toJson() Map<String, dynamic>
Serializes this ValidationError to JSON.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited