a-marenkov / gsheets

A Dart library for working with Google Sheets API.
Other
79 stars 31 forks source link

can u add this feature #25

Open FarsFuad opened 4 years ago

FarsFuad commented 4 years ago

'find row by list'

where u can just call rows by the list.

List <int> a = [ 2,5,7,77];
List lisrOfRows = await gSheet.sheet.values.findRowByList(List:  a);

that will fix fetching delay time , alot..

thanks btw

a-marenkov commented 4 years ago

Hi @FarsFuad

I'd suggest you to try using allRows method and then picking the ones you need from response.

I'll think about nicer solution that will allow to request only needed data. I'll let you know about the progress.

Thanks!

prantiknoor commented 3 years ago

Will you do it for flutter web ??

piecubed commented 3 years ago

@a-marenkov https://developers.google.com/sheets/api/reference/rest/v4/spreadsheets.values/batchGet might be useful, I'm too busy with other projects and school currently to make a PR, but it should be fairly simple.