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