getAll method

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