copyWith method
Implementation
Input$CreateDeploymentStatusInput copyWith(
{bool? Function()? autoInactive,
String? Function()? clientMutationId,
String? deploymentId,
String? Function()? description,
String? Function()? environment,
String? Function()? environmentUrl,
String? Function()? logUrl,
Enum$DeploymentStatusState? state}) =>
Input$CreateDeploymentStatusInput(
autoInactive:
autoInactive == null ? this.autoInactive : autoInactive(),
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
deploymentId: deploymentId == null ? this.deploymentId : deploymentId,
description: description == null ? this.description : description(),
environment: environment == null ? this.environment : environment(),
environmentUrl:
environmentUrl == null ? this.environmentUrl : environmentUrl(),
logUrl: logUrl == null ? this.logUrl : logUrl(),
state: state == null ? this.state : state);