toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final identities = this.identities;
final identityType = this.identityType;
final sourceRestriction = this.sourceRestriction;
final sources = this.sources;
return {
'identities': ?identities,
'identityType': ?identityType,
'sourceRestriction': ?sourceRestriction,
'sources': ?sources,
};
}