copyWith method
Implementation
SpaceDescriptionCreatePlain copyWith(
{String? value, String? representation}) {
return SpaceDescriptionCreatePlain(
value: value ?? this.value,
representation: representation ?? this.representation,
);
}