Embed constructor

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

Implementation

const Embed({
  this.url,
  this.width = 0,
  this.height = 0,
  this.params = const <Param>[],
});