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