getAllComments abstract method

  1. @GET("/comments")
Future<List<CommentModel>> getAllComments(
  1. @Query("task_id") String taskId
)

Implementation

@GET("/comments")
Future<List<CommentModel>> getAllComments(@Query("task_id") String taskId);