IFRAME property
final
Indicates that the frame is an iframe.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_FRAME_KIND_IFRAME)
Implementation
static final IFRAME = FrameKind._internalMultiPlatform('IFRAME', () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 2;
default:
break;
}
return null;
});