list<T extends APIModel> static method

Future<ListModelResponse<Comment>> list<T extends APIModel>({
  1. required CommentType type,
  2. required T parent,
  3. Comment? replyComment,
  4. int limit = 50,
  5. dynamic skip = 0,
})

Implementation

static Future<ListModelResponse<Comment>> list<T extends APIModel>(
        {required CommentType type,
        required T parent,
        Comment? replyComment,
        int limit = 50,
        skip = 0}) =>
    RPMTWApiClient.instance.commentResource.listComment<T>(
        type: type,
        parent: parent,
        replyComment: replyComment,
        limit: limit,
        skip: skip);