copyWith method

Input$UpdateProjectNextItemFieldInput copyWith({
  1. String? clientMutationId()?,
  2. String? fieldId,
  3. String? itemId,
  4. String? projectId,
  5. String? value,
})

Implementation

Input$UpdateProjectNextItemFieldInput copyWith(
        {String? Function()? clientMutationId,
        String? fieldId,
        String? itemId,
        String? projectId,
        String? value}) =>
    Input$UpdateProjectNextItemFieldInput(
        clientMutationId: clientMutationId == null
            ? this.clientMutationId
            : clientMutationId(),
        fieldId: fieldId == null ? this.fieldId : fieldId,
        itemId: itemId == null ? this.itemId : itemId,
        projectId: projectId == null ? this.projectId : projectId,
        value: value == null ? this.value : value);