copyWith method

SpacePropertyExpandable copyWith({
  1. String? version,
  2. String? space,
})

Implementation

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