How to get total number of rows with data in a sheet using gsheets dart library? – Flutter
Using the gsheets library, I can calculate the total number of rows in a specific sheet: var sheet = ss.worksheetByTitle('test'); var rows = await sheet?.values.map.allRows(); var totalRows = rows?.length; However, the above code requires fetching the row data from the…