copyWith method
GenerativeSummary
copyWith({
- LocalizedText? overview,
- String? overviewFlagContentUri,
- LocalizedText? description,
- String? descriptionFlagContentUri,
- References? references,
Implementation
GenerativeSummary copyWith({
LocalizedText? overview,
String? overviewFlagContentUri,
LocalizedText? description,
String? descriptionFlagContentUri,
References? references,
}) {
return GenerativeSummary(
overview: overview ?? this.overview,
overviewFlagContentUri:
overviewFlagContentUri ?? this.overviewFlagContentUri,
description: description ?? this.description,
descriptionFlagContentUri:
descriptionFlagContentUri ?? this.descriptionFlagContentUri,
references: references ?? this.references,
);
}