copyWith method

Implementation

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