delete method

Future<bool> delete(
  1. CommentsRequest request
)

Deletes a comment on a file.

Implementation

Future<bool> delete(CommentsRequest request) async {
  return await _channel.invokeMethod('Comments#Delete', request.toJson());
}