ArrayUtils class

\see test/utils_test.dart for how to use.

Constructors

ArrayUtils()

Properties

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

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

arrayCopyWithGrowth<T>(List<T> source, int sourceStart, List<T> dest, int destStart, int numElements, T defaultValue) List<T>
copyWithNewArraySize<T>(List<T> array, int size, T defaultValue) List<T>
ensureArrayCapacity<T>(List<T> array, int size, T defaultValue) List<T>
setArrayValueWithGrowth<T>(List<T> array, int index, T value, T defaultValue) List<T>