I'm creating an application that writes data to a google sheet and I now need to be able to READ that data to be used in an function that will assist with an autocomplete functionality. i.e. I need to be able to extract specific information from different rows and cells in the Google Sheet. Are there any examples of how to use the Google Sheet API for Flutter in order to read data from the sheet and be used in an application?
I used this tutorial for writing to the sheet: https://medium.com/mindorks/storing-data-from-the-flutter-app-google-sheets-e4498e9cda5d
I have read through this "Basic reading" document: https://developers.google.com/sheets/api/samples/reading
As well as the documentation for the googleapis flutter package: https://pub.dev/packages/googleapis
This stackoverflow answer (https://stackoverflow.com/a/48485898/9554434) was given as a suggestion for using APIs, but not how to specifically use the Google Sheets API.
Any assistance would be appreciated.