toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customer = this.customer;
final name = this.name;
final orgUnitId = this.orgUnitId;
final userDevice = this.userDevice;
final userEmail = this.userEmail;
final userId = this.userId;
return {
'customer': ?customer,
'name': ?name,
'orgUnitId': ?orgUnitId,
'userDevice': ?userDevice,
'userEmail': ?userEmail,
'userId': ?userId,
};
}