copyWith method
Implementation
UiModificationDetails copyWith(
{List<UiModificationContextDetails>? contexts,
String? data,
String? description,
String? id,
String? name,
String? self}) {
return UiModificationDetails(
contexts: contexts ?? this.contexts,
data: data ?? this.data,
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
self: self ?? this.self,
);
}