RowColumnIndex class Null safety

Holds the coordinates for a cell.

Constructors

RowColumnIndex(int rowIndex, int columnIndex)
Creates the RowColumnIndex to hold coordinates of a cell.

Properties

columnIndex int
An index of a column.
read / write
hashCode int
The hash code for this object.
read-onlyinherited
isEmpty bool
Whether this object is empty.
read-only
rowIndex int
An index of a row.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

equals(RowColumnIndex obj) bool
Whether this object and a specified object are equal.
getHashCode() int
A 32-bit signed integer that is the hash code for this object.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toString() String
The type name with state of this object.
override

Operators

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

Static Properties

empty RowColumnIndex
Creates the empty object with row index and column index set to int.MinValue.
read-only