IFrame constructor
const
IFrame({
- String? src,
- String? srcDoc,
- String? name,
- String? allow,
- bool? allowFullscreen,
- bool? allowPaymentRequest,
- FetchPriorityType? fetchPriority,
- String? height,
- ReferrerPolicyType? referrerPolicy,
- String? width,
- Key? key,
- NullableElementCallback? ref,
- String? id,
- String? title,
- String? style,
- String? className,
- String? innerText,
- Widget? child,
- List<
Widget> ? children, - EventCallback? onClick,
- 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,
);