fromJson static method

HelpArticle fromJson(
  1. dynamic json
)

Implementation

static HelpArticle fromJson(dynamic json) {
  return HelpArticle(
      id: json['id'],
      aid: json['aid'],
      title: json['title'],
      type: json['type'],
      content: json['content']);
}