GroupList<T extends Group> class
Basic structure of a groups list from groups found in a aeronautical report from land stations.
Properties
-
codes
→ List<
String?> -
Get the codes of every group found in the report as a
List<String>.no setter - first → T
-
Get the first item of the list.
no setter
- hashCode → int
-
The hash code for this object.
no setterinherited
-
items
→ List<
T> -
Get the groups found in report as a
List<Group>.no setter -
iter
→ Iterator<
T> -
Get an iterator from the groups found in report.
no setter
- last → T
-
Get the last item of the list.
no setter
- length → int
-
Get the length of the items.
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
add(
T group) → void - Adds groups to the list.
-
asList(
) → List< Map< String, Object?> > -
Returns the items data as a
List<Map<String, Object?>>. -
asMap(
) → Map< String, Object?> -
Returns the items data as a map like
Map<String, Object?>. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toJSON(
) → String - Returns the items data as a string in JSON format.
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
-
operator [](
int index) → T