commit method

  1. @override
Future<CommitResponse> commit(
  1. CommitRequest request
)
override

Commits a transaction, while optionally updating documents.

Throws a http.ClientException if there were problems communicating with the API service. Throws a ServiceException if the API method failed for any reason.

Implementation

@override
Future<CommitResponse> commit(CommitRequest request) async {
  if (isClosed) throw StateError('Service is closed');

  if (_commit case final commit?) {
    return commit(request);
  }
  throw UnsupportedError('commit');
}