HelpdeskSection.fromMap constructor

HelpdeskSection.fromMap(
  1. Map map
)

Implementation

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