IntType class
The type specification of int types
- Inheritance
-
- Object
- AbstractType<
int, IntType> - IntType
Constructors
- IntType.new()
- Create a new IntType
Properties
Methods
-
baseType<
V> (Type type) → void -
inherited
-
check(
dynamic object, ValidationContext context) → void -
inherited
-
code(
) → String -
inherited
-
constraint(
String input) → IntType -
override
-
greaterThan(
int value) → IntType -
allow only values > value
value
the lower limit -
greaterThanEquals(
int length) → IntType -
allow only values <= value
value
the upper limit -
isValid(
dynamic object) → bool -
return
true
, if the specified object is valid, elsefalse
object
the to be validated object.inherited -
lessThan(
int value) → IntType -
allow only values < value
value
the upper limit -
lessThanEquals(
int value) → IntType -
allow only values <= value
value
the upper limit -
max(
int value) → IntType -
allow only values <= value
value
the maximum value -
min(
int value) → IntType -
allow only values >= value
value
the minimum value -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
optional(
) → IntType -
inherited
-
parse(
Map< String, MethodSpec> methods, String expression) → IntType -
inherited
-
required(
) → IntType -
inherited
-
test<
S> ({required Type type, required String name, required Check< S> check, dynamic params = const <String, dynamic>{}, dynamic stop = false, String? message}) → IntType -
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
validate(
dynamic object) → void -
validate the passed object. In case of a type violation, a ValidationException will be thrown
object
the to be validated object.inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
-
methods
→ Map<
String, MethodSpec> -
final
Static Methods
-
fromString(
String input) → IntType