Iframe constructor

Iframe({
  1. Key? key,
  2. required String? height,
  3. required String? src,
  4. required String? width,
  5. Decoration? decoration,
})

Implementation

Iframe({
  Key? key,
  // this.allow,
  // this.allowFullscreen,
  // this.allowPaymentRequest,
  // this.csp,
  ///
  required this.height,
  // this.name,
  // this.referrerPolicy,
  ///
  required this.src,
  // this.srcdoc,
  ///
  required this.width,
  this.decoration,
})  : iframe = IFrameElement(),
      super(key: key);