getAll method
Future<List<List<Object?> > ?>
getAll({
- required String sheet_id,
- String range = "Sheet1!A2:Z",
- GoogleApisClientApiKey? googleApisClientApiKey,
Implementation
Future<List<List<Object?>>?> getAll({
required String sheet_id,
String range = "Sheet1!A2:Z",
GoogleApisClientApiKey? googleApisClientApiKey,
}) async {
SpreadsheetsValuesResource sheets_api =
await sheets_api_client(googleApisClientApiKey: googleApisClientApiKey);
return (await sheets_api.get(sheet_id, range)).values;
}