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