toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"tags": List<dynamic>.from(tags.map((int x) => x)),
"id": id,
"licencePlate": licencePlate,
"title": title,
"brand": brand,
"color": color,
"detail1": detail1,
"detail2": detail2,
"creatorId": creatorId,
"adminUserIds": adminUserIds == null ? <dynamic>[] : List<dynamic>.from(adminUserIds!.map((String x) => x)),
};