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