copyWith method

Input$RemoveOutsideCollaboratorInput copyWith({
  1. String? clientMutationId()?,
  2. String? organizationId,
  3. String? userId,
})

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);