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