appendRow method
Appends row with values from map.
Expands current sheet's size if inserting range is out of sheet's bounds.
map - map containing values to insert (not null nor empty)
fromColumn - optional (defaults to 1), column index for the first inserted
value,
columns start at index 1 (column A)
mapTo - optional (defaults to 1), index of a row to which
keys of the map will be mapped to,
rows start at index 1
appendMissing - optional (defaults to false), whether keys of map
(with its related values) that are not present in a mapTo row
should be added
inRange - optional (defaults to false), whether map values should be
appended to last row in range (respects fromColumn) or last row in table
Returns Future true in case of success.
Throws GSheetsException.
Implementation
Future<bool> appendRow(
Map<String, dynamic> map, {
int fromColumn = 1,
int mapTo = 1,
bool appendMissing = false,
bool inRange = false,
}) async {
checkMap(map);
return appendRows(
[map],
fromColumn: fromColumn,
mapTo: mapTo,
appendMissing: appendMissing,
inRange: inRange,
);
}