copyWith method

Input$CreateLabelInput copyWith({
  1. String? clientMutationId()?,
  2. String? color,
  3. String? description()?,
  4. String? name,
  5. String? repositoryId,
})

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