toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final additionalRoles = this.additionalRoles;
final inherited = this.inherited;
final inheritedFrom = this.inheritedFrom;
final role = this.role;
final teamDrivePermissionType = this.teamDrivePermissionType;
return {
'additionalRoles': ?additionalRoles,
'inherited': ?inherited,
'inheritedFrom': ?inheritedFrom,
'role': ?role,
'teamDrivePermissionType': ?teamDrivePermissionType,
};
}