IFrame constructor

const IFrame({
  1. String? src,
  2. String? srcDoc,
  3. String? name,
  4. String? allow,
  5. bool? allowFullscreen,
  6. bool? allowPaymentRequest,
  7. FetchPriorityType? fetchPriority,
  8. String? height,
  9. ReferrerPolicyType? referrerPolicy,
  10. String? width,
  11. Key? key,
  12. NullableElementCallback? ref,
  13. String? id,
  14. String? title,
  15. String? style,
  16. String? className,
  17. bool? hidden,
  18. String? innerText,
  19. Widget? child,
  20. List<Widget>? children,
  21. EventCallback? onClick,
  22. Map<String, String>? additionalAttributes,
})

Implementation

const IFrame({
  this.src,
  this.srcDoc,
  this.name,
  this.allow,
  this.allowFullscreen,
  this.allowPaymentRequest,
  this.fetchPriority,
  this.height,
  this.referrerPolicy,
  this.width,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );