MiniSprite class

A class used to manipulate a matrix of pixels. first dimension of the pixels array is the y coordinate, second is the x coordinate.

Constructors

MiniSprite(List<List<int>> pixels)
A class used to manipulate a matrix of pixels. first dimension of the pixels array is the y coordinate, second is the x coordinate.
const
MiniSprite.empty(int width, int height)
A class used to manipulate a matrix of pixels. first dimension of the pixels array is the y coordinate, second is the x coordinate.
MiniSprite.fromDataString(String value)
A class used to manipulate a matrix of pixels. first dimension of the pixels array is the y coordinate, second is the x coordinate.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
pixels List<List<int>>
The matrix of pixels.
final
props List<Object>
The list of properties that will be used to determine whether two instances are equal.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDataString() String
Returns this as a data string.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited