copyWith method
Implementation
AreaSummary copyWith({
List<ContentBlock>? contentBlocks,
String? flagContentUri,
}) {
return AreaSummary(
contentBlocks:
((contentBlocks?.isNotEmpty ?? false) ? contentBlocks : null) ??
this.contentBlocks,
flagContentUri: flagContentUri ?? this.flagContentUri,
);
}