copyWith method

Input$AddLabelsToLabelableInput copyWith({
  1. String? clientMutationId()?,
  2. List<String>? labelIds,
  3. String? labelableId,
})

Implementation

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