HelpArticle constructor

const HelpArticle({
  1. int? id,
  2. String? aid,
  3. String? title,
  4. String? type,
  5. String? content,
})

Implementation

const HelpArticle({this.id, this.aid, this.title, this.type, this.content})
    : super();