ShareUrl constructor

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

Implementation

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