LinkPreviewWidget constructor

const LinkPreviewWidget({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required String link,
  5. String? semanticLabel,
})

Implementation

const LinkPreviewWidget({
  super.key,
  this.width,
  this.height,
  required this.link,
  this.semanticLabel,
});