copyWith method
ContentChildren
copyWith({
- ContentArray? attachment,
- ContentArray? comment,
- ContentArray? page,
- ContentChildrenExpandable? expandable,
- GenericLinks? links,
Implementation
ContentChildren copyWith(
{ContentArray? attachment,
ContentArray? comment,
ContentArray? page,
ContentChildrenExpandable? expandable,
GenericLinks? links}) {
return ContentChildren(
attachment: attachment ?? this.attachment,
comment: comment ?? this.comment,
page: page ?? this.page,
expandable: expandable ?? this.expandable,
links: links ?? this.links,
);
}