OmnyEmbedData constructor

const OmnyEmbedData({
  1. required String embedUrl,
  2. double height = defaultHeight,
})

Creates an instance of the embed data

Implementation

const OmnyEmbedData({
  required this.embedUrl,
  this.height = defaultHeight,
}) : super(canChangeSize: true);