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