toMap method
Implementation
Map<String, dynamic> toMap() => <String, dynamic>{
"code": code,
"title": title,
"registrationNumber": registrationNumber,
"nationalCode": nationalCode,
"representative": representative,
"address": address,
"postalCode": postalCode,
"phoneNumber": phoneNumber,
"sign1Base64": sign1Base64,
"sign1Owner": sign1Owner,
"sign2Base64": sign2Base64,
"sign2Owner": sign2Owner,
"logoBase64": logoBase64,
"detail1": detail1,
"detail2": detail2,
"tags": List<dynamic>.from(tags.map((int x) => x)),
"id": id,
"creatorId": creatorId,
"adminUserIds": adminUserIds == null ? <dynamic>[] : List<dynamic>.from(adminUserIds!.map((String x) => x)),
};