copyWith method

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

Implementation

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