copyWith method
Implementation
ContentChildrenExpandable copyWith(
{String? attachment, String? comment, String? page}) {
return ContentChildrenExpandable(
attachment: attachment ?? this.attachment,
comment: comment ?? this.comment,
page: page ?? this.page,
);
}