batchUpdate method

Future<Response> batchUpdate(
  1. List<Map<String, dynamic>> requests
)

Applies one or more updates to the spreadsheet. About batchUpdate

requests - list of valid requests to perform on the Spreadsheet Information about requests is available at the official Google docs

To create requests you can use official googleapis library

Returns the Response of batchUpdate request. About batchUpdate response

Throws GSheetsException

Implementation

Future<http.Response> batchUpdate(List<Map<String, dynamic>> requests) =>
    GSheets.batchUpdate(_client, id, requests);