copyWith method

Implementation

SpacePermissionOperation copyWith(
    {SpacePermissionOperationKey? key,
    SpacePermissionOperationTargetType? targetType}) {
  return SpacePermissionOperation(
    key: key ?? this.key,
    targetType: targetType ?? this.targetType,
  );
}