copyWith method

PageOfChangelogsHistoriesItemItemsItem copyWith({
  1. String? field,
  2. String? fieldtype,
  3. String? fieldId,
  4. String? from,
  5. String? fromString,
  6. String? to,
  7. String? toString$,
})

Implementation

PageOfChangelogsHistoriesItemItemsItem copyWith(
    {String? field,
    String? fieldtype,
    String? fieldId,
    String? from,
    String? fromString,
    String? to,
    String? toString$}) {
  return PageOfChangelogsHistoriesItemItemsItem(
    field: field ?? this.field,
    fieldtype: fieldtype ?? this.fieldtype,
    fieldId: fieldId ?? this.fieldId,
    from: from ?? this.from,
    fromString: fromString ?? this.fromString,
    to: to ?? this.to,
    toString$: toString$ ?? this.toString$,
  );
}