copyWith method

ContentChildrenExpandable copyWith({
  1. String? attachment,
  2. String? comment,
  3. String? page,
})

Implementation

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