CommentsResponse.fromList constructor

CommentsResponse.fromList(
  1. List json
)

Creates a CommentsResponse from json list

Implementation

factory CommentsResponse.fromList(List<dynamic> json) => CommentsResponse(
    texts: const [],
    dates: const [],
    userIds: const [],
    userPictures: const [],
    ids: const [],
    hidden: const []);