HotLink.fromJson constructor

HotLink.fromJson(
  1. Map<String, dynamic> json
)

Implementation

HotLink.fromJson(Map<String, dynamic> json) {
  linkUrl = json['link_url'];
  rendered = json['rendered'];
  score = json['score'];
  numPlurks = json['num_plurks'];
}