CellsMapper class

Mapper for Worksheet's cells.

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

column(int column, {int mapTo = 1, int fromRow = 1, int length = -1}) Future<Map<String, Cell>>
Fetches specified column, maps it to other column and returns map.
columnByKey(dynamic key, {int fromRow = 2, dynamic mapTo, int length = -1}) Future<Map<String, Cell>?>
Fetches column by its name, maps it to other column and returns map.
insert(Map<String, Cell> map) Future<bool>
Updates cells with values of map.
lastColumn({int fromRow = 1, int mapTo = 1, int length = -1, bool inRange = false}) Future<Map<String, Cell>?>
Fetches last column, maps it to other column and returns map.
lastRow({int fromColumn = 1, int mapTo = 1, int length = -1, bool inRange = false}) Future<Map<String, Cell>?>
Fetches last row, maps it to other row and returns map.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
row(int row, {int fromColumn = 1, int mapTo = 1, int length = -1}) Future<Map<String, Cell>>
Fetches specified row, maps it to other row and returns map.
rowByKey(dynamic key, {int fromColumn = 2, dynamic mapTo, int length = -1}) Future<Map<String, Cell>?>
Fetches row by its name, maps it to other row, and returns map.
toString() String
A string representation of this object.
inherited

Operators

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