copyWith method

Website copyWith({
  1. String? url,
  2. Label<WebsiteLabel>? label,
  3. PropertyMetadata? metadata,
})

Implementation

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