InternalLinkTypeInstantView constructor

const InternalLinkTypeInstantView({
  1. required String url,
  2. required String fallbackUrl,
  3. dynamic extra,
  4. int? clientId,
})

The link must be opened in an Instant View. Call getWebPageInstantView with the given URL to process the link

Implementation

const InternalLinkTypeInstantView({
  required this.url,
  required this.fallbackUrl,
  this.extra,
  this.clientId,
});