createComment abstract method

  1. @POST("comments")
Future<CommentModel> createComment(
  1. @Body() CommentDataRequest commentData
)

Implementation

@POST("comments")
Future<CommentModel> createComment(@Body() CommentDataRequest commentData);