getComment method

Future<DriveComment> getComment(
  1. CommentsRequest request
)

Obtains a comment on a file.

Implementation

Future<DriveComment> getComment(CommentsRequest request) async {
  final String result =
      await _channel.invokeMethod('Comments#Get', request.toJson());
  return DriveComment.fromJson(result);
}