copyWith method

Input$CreateDeploymentStatusInput copyWith({
  1. bool? autoInactive()?,
  2. String? clientMutationId()?,
  3. String? deploymentId,
  4. String? description()?,
  5. String? environment()?,
  6. String? environmentUrl()?,
  7. String? logUrl()?,
  8. Enum$DeploymentStatusState? state,
})

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