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