copyWith method
Implementation
ContainerSummary copyWith({String? title, String? displayUrl}) {
return ContainerSummary(
title: title ?? this.title,
displayUrl: displayUrl ?? this.displayUrl,
);
}
ContainerSummary copyWith({String? title, String? displayUrl}) {
return ContainerSummary(
title: title ?? this.title,
displayUrl: displayUrl ?? this.displayUrl,
);
}