list class

Constructors

list.new([List? args])

Properties

count int
no setter
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

add(dynamic entry) → void
addRange(list other) → void
insert(int index, dynamic value) → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(int index) → void
toList() List
toString() String
This overridden method will return a CSV string with a space after each comma. Default behavior is that vectors and rotations will have their toString method invoked
override

Operators

operator +(dynamic other) list
operator ==(Object other) bool
The equality operator.
inherited
operator [](int index) → dynamic
operator []=(int index, dynamic value) → void