toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deliverySettings = this.deliverySettings;
final email = this.email;
final etag = this.etag;
final id = this.id;
final kind = this.kind;
final role = this.role;
final status = this.status;
final type = this.type;
return {
'delivery_settings': ?deliverySettings,
'email': ?email,
'etag': ?etag,
'id': ?id,
'kind': ?kind,
'role': ?role,
'status': ?status,
'type': ?type,
};
}