copyWith method
Implementation
Input$CreateEnvironmentInput copyWith(
{String? Function()? clientMutationId,
String? name,
String? repositoryId}) =>
Input$CreateEnvironmentInput(
clientMutationId: clientMutationId == null
? this.clientMutationId
: clientMutationId(),
name: name == null ? this.name : name,
repositoryId:
repositoryId == null ? this.repositoryId : repositoryId);