copyWith method

SpacePropertyCreateSpace copyWith({
  1. String? key,
})

Implementation

SpacePropertyCreateSpace copyWith({String? key}) {
  return SpacePropertyCreateSpace(
    key: key ?? this.key,
  );
}