copyWith method
Implementation
SpacePropertyExpandable copyWith({String? version, String? space}) {
return SpacePropertyExpandable(
version: version ?? this.version,
space: space ?? this.space,
);
}
SpacePropertyExpandable copyWith({String? version, String? space}) {
return SpacePropertyExpandable(
version: version ?? this.version,
space: space ?? this.space,
);
}