deleteComments method

Future<void> deleteComments(
  1. DeleteCommentsRequest request
)

Removes all comments from the document.

Implementation

Future<void> deleteComments(DeleteCommentsRequest request) async {
  await _apiClient.call(request);
}