TextParameter class

Parameter containing text

Inheritance

Constructors

TextParameter(String name, String textValue)
Creates a new TextParameter
TextParameter.value(String name, String value)
Creates a new TextParameter

Properties

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
text String
Retrieves the text
no setter
textValue String
the unparsed text value of this parameter
finalinherited
value String
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, String? value) TextParameter?
Creates a new TextParameter when the value is not null
parse(String textValue) String
Parses the textValue
override