DeeplinklyContent constructor

const DeeplinklyContent({
  1. required String canonicalIdentifier,
  2. String? title,
  3. String? description,
  4. String? imageUrl,
  5. Map<String, dynamic> metadata = const {},
})

Implementation

const DeeplinklyContent({
  required this.canonicalIdentifier,
  this.title,
  this.description,
  this.imageUrl,
  this.metadata = const {},
});