fromUnreadJson static method

Thread fromUnreadJson(
  1. dynamic json
)

Implementation

static Thread fromUnreadJson(dynamic json) {
  return Thread(
      tid: json['tid'],
      topic: json['topic']);
}