copyWith method
Implementation
PermissionScheme copyWith(
{String? description,
String? expand,
int? id,
String? name,
List<PermissionGrant>? permissions,
Scope? scope,
String? self}) {
return PermissionScheme(
description: description ?? this.description,
expand: expand ?? this.expand,
id: id ?? this.id,
name: name ?? this.name,
permissions: permissions ?? this.permissions,
scope: scope ?? this.scope,
self: self ?? this.self,
);
}