replies property

List<Thread> get replies

Implementation

List<Thread> get replies {
  List<Thread> list = [];
  for (var map in replyList!) {
    list.add(Thread(map));
  }
  return list;
}