copyWith method

Input$ClearLabelsFromLabelableInput copyWith({
  1. String? clientMutationId()?,
  2. String? labelableId,
})

Implementation

Input$ClearLabelsFromLabelableInput copyWith(
        {String? Function()? clientMutationId, String? labelableId}) =>
    Input$ClearLabelsFromLabelableInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        labelableId: labelableId == null ? this.labelableId : labelableId);