copyWith method
Implementation
Input$RemoveOutsideCollaboratorInput copyWith(
{String? Function()? clientMutationId,
String? organizationId,
String? userId}) =>
Input$RemoveOutsideCollaboratorInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
organizationId:
organizationId == null ? this.organizationId : organizationId,
userId: userId == null ? this.userId : userId);