Embed constructor

Embed({
  1. String? url,
  2. int? width,
  3. int? height,
  4. List<Param>? params,
})

Implementation

Embed({
  this.url,
  this.width,
  this.height,
  this.params,
});