UNKNOWN property
final
Indicates that the frame is an unknown type frame. We may extend this enum type to identify more frame kinds in the future.
Officially Supported Platforms/Implementations:
- Windows WebView2 (Official API - COREWEBVIEW2_FRAME_KIND_UNKNOWN)
Implementation
static final UNKNOWN = FrameKind._internalMultiPlatform('UNKNOWN', () {
switch (defaultTargetPlatform) {
case TargetPlatform.windows:
return 0;
default:
break;
}
return null;
});