copyWith method

ShareUrl copyWith({
  1. String? construction,
  2. String? gallery,
  3. String? websiteUrl,
})

Implementation

ShareUrl copyWith({  String? construction,
  String? gallery,
  String? websiteUrl,
}) => ShareUrl(  construction: construction ?? _construction,
  gallery: gallery ?? _gallery,
  websiteUrl: websiteUrl ?? _websiteUrl,
);