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