MetaInfo constructor

MetaInfo({
  1. String? title,
  2. Uri? url,
  3. Uri? secureUrl,
  4. String? description,
  5. String? siteName,
  6. List<ImageInfo> images = const [],
  7. List<VideoInfo> videos = const [],
  8. List<AudioInfo> audios = const [],
})

Create rich information link metadata.

Implementation

MetaInfo(
    {this.title,
    this.url,
    this.secureUrl,
    this.description,
    this.siteName,
    List<ImageInfo> images = const [],
    List<VideoInfo> videos = const [],
    List<AudioInfo> audios = const []})
    : this.images = List.unmodifiable(images),
      this.videos = List.unmodifiable(videos),
      this.audios = List.unmodifiable(audios);