getAl method

Future<List<List<Object?>>?> getAl({
  1. required String sheet_id,
  2. String range = "Sheet1!A2:Z",
  3. 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));
}