WorksheetAsCells class

Interactor for working with Worksheet cells as Cell objects.

Properties

hashCode int
The hash code for this object.
no setterinherited
map CellsMapper
Mapper for Worksheet's cells.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

allColumns({int fromColumn = 1, int fromRow = 1, int length = -1, int count = -1}) Future<List<List<Cell>>>
Fetches all columns.
allRows({int fromRow = 1, int fromColumn = 1, int length = -1, int count = -1}) Future<List<List<Cell>>>
Fetches all rows.
cell({required int row, required int column}) Future<Cell>
Fetches cell.
cellByKeys({required dynamic rowKey, required dynamic columnKey}) Future<Cell?>
Fetches cell by names of its column and row.
column(int column, {int fromRow = 1, int length = -1}) Future<List<Cell>>
Fetches specified column.
columnByKey(dynamic key, {int fromRow = 2, int length = -1}) Future<List<Cell>?>
Fetches column by its name.
findByValue(Object value, {int fromRow = 1, int fromColumn = 1, int length = -1}) Future<List<Cell>>
Find cells by value.
insert(List<Cell> values) Future<bool>
Updates cells with values of values.
lastColumn({int fromRow = 1, int length = -1, bool inRange = false}) Future<List<Cell>?>
Fetches last column.
lastRow({int fromColumn = 1, int length = -1, bool inRange = false}) Future<List<Cell>?>
Fetches last row.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
row(int row, {int fromColumn = 1, int length = -1}) Future<List<Cell>>
Fetches specified row.
rowByKey(dynamic key, {int fromColumn = 2, int length = -1}) Future<List<Cell>?>
Fetches row by its name.
toString() String
A string representation of this object.
inherited

Operators

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