deleteDocument method

  1. @override
Future<void> deleteDocument(
  1. DeleteDocumentRequest request
)
override

Deletes a Document.

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<void> deleteDocument(DeleteDocumentRequest request) async {
  if (isClosed) throw StateError('Service is closed');

  if (_deleteDocument case final deleteDocument?) {
    return deleteDocument(request);
  }
  throw UnsupportedError('deleteDocument');
}