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