BooleanParameter class

Parameter containing boolean values

Inheritance

Constructors

BooleanParameter(String name, String textValue)
Creates a new BooleanParameter
BooleanParameter.value(String name, bool value)
Creates a new BooleanParameter

Properties

boolValue bool
Retrieves the value
no setter
hashCode int
The hash code for this object.
no setterinherited
name String
the name of this parameter
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
textValue String
the unparsed text value of this parameter
finalinherited
value bool
The parsed value
finalinherited

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

Static Methods

create(String name, bool? value) BooleanParameter?
Creates a new BooleanParameter when the value is not null
parse(String textValue) bool
Parses the textValue
override