copyWith method
SpaceDescription
copyWith({
- String? value,
- SpaceDescriptionRepresentation? representation,
- List<
Map< ? embeddedContent,String, dynamic> >
Implementation
SpaceDescription copyWith(
{String? value,
SpaceDescriptionRepresentation? representation,
List<Map<String, dynamic>>? embeddedContent}) {
return SpaceDescription(
value: value ?? this.value,
representation: representation ?? this.representation,
embeddedContent: embeddedContent ?? this.embeddedContent,
);
}