copyWith method

Implementation

ContentCreateSpaceDescriptionExpandable copyWith(
    {String? view, String? plain}) {
  return ContentCreateSpaceDescriptionExpandable(
    view: view ?? this.view,
    plain: plain ?? this.plain,
  );
}