apiV1DiscussionCommentsPost method

Future<Response<CommentViewModel>> apiV1DiscussionCommentsPost({
  1. required CommentRequest? body,
})

Create a new comment

Implementation

Future<chopper.Response<CommentViewModel>> apiV1DiscussionCommentsPost(
    {required CommentRequest? body}) {
  generatedMapping.putIfAbsent(
      CommentViewModel, () => CommentViewModel.fromJsonFactory);

  return _apiV1DiscussionCommentsPost(body: body);
}