toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final aclInheritanceType = this.aclInheritanceType;
final deniedReaders = this.deniedReaders;
final inheritAclFrom = this.inheritAclFrom;
final owners = this.owners;
final readers = this.readers;
return {
'aclInheritanceType': ?aclInheritanceType,
'deniedReaders': ?deniedReaders,
'inheritAclFrom': ?inheritAclFrom,
'owners': ?owners,
'readers': ?readers,
};
}