MoreComments.parse constructor

MoreComments.parse(
  1. Reddit reddit,
  2. Map data
)

Implementation

MoreComments.parse(Reddit reddit, Map data)
    : _children = data['children'].cast<String>(),
      _count = data['count'],
      _parentId = data['parent_id'],
      super(reddit) {
  setData(this, data);
}