copyWith method
Implementation
SpacePropertyCreateRequest copyWith({String? key, dynamic value}) {
return SpacePropertyCreateRequest(
key: key ?? this.key,
value: value ?? this.value,
);
}
SpacePropertyCreateRequest copyWith({String? key, dynamic value}) {
return SpacePropertyCreateRequest(
key: key ?? this.key,
value: value ?? this.value,
);
}