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