copyWith method
Implementation
SpaceWatch copyWith(
{String? type,
WatchUser? watcher,
String? spaceKey,
String? labelName,
String? prefix}) {
return SpaceWatch(
type: type ?? this.type,
watcher: watcher ?? this.watcher,
spaceKey: spaceKey ?? this.spaceKey,
labelName: labelName ?? this.labelName,
prefix: prefix ?? this.prefix,
);
}