copyWith method

Implementation

SpacePermissionRequestOperation copyWith(
    {SpacePermissionRequestOperationKey? key,
    SpacePermissionRequestOperationTarget? target}) {
  return SpacePermissionRequestOperation(
    key: key ?? this.key,
    target: target ?? this.target,
  );
}