copyWith method

SpaceDescriptionValueExpandable copyWith({
  1. String? view,
  2. String? plain,
})

Implementation

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