HelpdeskSection.fromMap constructor
HelpdeskSection.fromMap(
- Map map
Implementation
HelpdeskSection.fromMap(Map map) {
id = map['id'];
title = map['title'];
content = map['description'];
category = map['category'] ?? '';
articles = map['articles'] ?? <HelpdeskArticle>[];
}