Portal constructor

const Portal({
  1. ReferrerPolicyType? referrerPolicy,
  2. String? src,
  3. Key? key,
  4. NullableElementCallback? ref,
  5. String? id,
  6. String? title,
  7. String? style,
  8. String? className,
  9. bool? hidden,
  10. String? innerText,
  11. Widget? child,
  12. List<Widget>? children,
  13. EventCallback? onClick,
  14. Map<String, String>? additionalAttributes,
})

Implementation

const Portal({
  this.referrerPolicy,
  this.src,
  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,
      );