toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"description": description,
"score": score,
"id": id,
"addTags": addTags == null ? null : List<dynamic>.from(addTags!.map((dynamic x) => x)),
"removeTags": removeTags == null ? null : List<dynamic>.from(removeTags!.map((dynamic x) => x)),
"tags": tags == null ? null : List<dynamic>.from(tags!.map((dynamic x) => x)),
};