copyWith method
Implementation
@override
PageBlockEmbeddedPost copyWith({
String? url,
String? author,
Photo? authorPhoto,
int? date,
List<PageBlock>? pageBlocks,
PageBlockCaption? caption,
}) => PageBlockEmbeddedPost(
url: url ?? this.url,
author: author ?? this.author,
authorPhoto: authorPhoto ?? this.authorPhoto,
date: date ?? this.date,
pageBlocks: pageBlocks ?? this.pageBlocks,
caption: caption ?? this.caption,
);