copyWith method
SpacePropertyCreate
copyWith({
- String? key,
- PropertyValue? value,
- SpacePropertyCreateSpace? space,
Implementation
SpacePropertyCreate copyWith(
{String? key, PropertyValue? value, SpacePropertyCreateSpace? space}) {
return SpacePropertyCreate(
key: key ?? this.key,
value: value ?? this.value,
space: space ?? this.space,
);
}