copyWith method

GlobalSpaceIdentifier copyWith({
  1. String? spaceIdentifier,
})

Implementation

GlobalSpaceIdentifier copyWith({String? spaceIdentifier}) {
  return GlobalSpaceIdentifier(
    spaceIdentifier: spaceIdentifier ?? this.spaceIdentifier,
  );
}