iframe constructor
const
iframe(
- List<
Component> children, { - required String src,
- String? allow,
- String? csp,
- MediaLoading? loading,
- String? name,
- String? sandbox,
- ReferrerPolicy? referrerPolicy,
- int? width,
- int? height,
- String? id,
- String? classes,
- Styles? styles,
- Map<
String, String> ? attributes, - Map<
String, EventCallback> ? events, - Key? key,
The <iframe> HTML element represents a nested browsing context, embedding another HTML page into the current one.
Implementation
const iframe(
this.children, {
required this.src,
this.allow,
this.csp,
this.loading,
this.name,
this.sandbox,
this.referrerPolicy,
this.width,
this.height,
this.id,
this.classes,
this.styles,
this.attributes,
this.events,
super.key,
});