copyWith method
Implementation
SpaceUpdate copyWith(
{String? name,
SpaceDescriptionCreate? description,
Map<String, dynamic>? homepage,
String? type,
String? status}) {
return SpaceUpdate(
name: name ?? this.name,
description: description ?? this.description,
homepage: homepage ?? this.homepage,
type: type ?? this.type,
status: status ?? this.status,
);
}