copyWith method
Implementation
Website copyWith({
String? url,
Label<WebsiteLabel>? label,
PropertyMetadata? metadata,
}) => Website(
url: url ?? this.url,
label: label ?? this.label,
metadata: metadata ?? this.metadata,
);
Website copyWith({
String? url,
Label<WebsiteLabel>? label,
PropertyMetadata? metadata,
}) => Website(
url: url ?? this.url,
label: label ?? this.label,
metadata: metadata ?? this.metadata,
);