copyWith method
SpacePermissionCustomContentOperationsItem
copyWith({
- SpacePermissionCustomContentOperationsItemKey? key,
- String? target,
- bool? access,
Implementation
SpacePermissionCustomContentOperationsItem copyWith(
{SpacePermissionCustomContentOperationsItemKey? key,
String? target,
bool? access}) {
return SpacePermissionCustomContentOperationsItem(
key: key ?? this.key,
target: target ?? this.target,
access: access ?? this.access,
);
}