MinNumberValidator class

Implemented types
Annotations
  • @immutable

Constructors

MinNumberValidator({required double number})
Constructs the validator with the minimum number that the value must be.
const

Properties

hashCode int
The hash code for this object.
no setterinherited
number double
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
type String
no setteroverride

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Returns the JSON-compatible representation of this validator.
toString() String
Returns the string encoded JSON representation for this class. This will remove all null values and empty collections from the returned string.
inherited
validate({required String label, required String? value}) String?
Ensures the value is a valid number that is at least as large as the assigned number.
override

Operators

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

Static Methods

fromDynamic(dynamic map) MinNumberValidator
Processes the validator object from the given map which must be an actual Map or a Map-like object that supports the [] operator. Any non-null object that is not Map-like will result in an error. A null value will result in a return value of null.

Constants

kType → const String