toJson method

Map<String, dynamic> toJson()

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,
  };
}