TeamDriveRestrictions.fromJson constructor

TeamDriveRestrictions.fromJson(
  1. Map json_
)

Implementation

TeamDriveRestrictions.fromJson(core.Map json_)
    : this(
        adminManagedRestrictions:
            json_['adminManagedRestrictions'] as core.bool?,
        copyRequiresWriterPermission:
            json_['copyRequiresWriterPermission'] as core.bool?,
        domainUsersOnly: json_['domainUsersOnly'] as core.bool?,
        sharingFoldersRequiresOrganizerPermission:
            json_['sharingFoldersRequiresOrganizerPermission'] as core.bool?,
        teamMembersOnly: json_['teamMembersOnly'] as core.bool?,
      );