MAIN_FRAME property

FrameKind MAIN_FRAME
final

Indicates that the frame is a primary main frame(webview).

Officially Supported Platforms/Implementations:

Implementation

static final MAIN_FRAME = FrameKind._internalMultiPlatform('MAIN_FRAME', () {
  switch (defaultTargetPlatform) {
    case TargetPlatform.windows:
      return 1;
    default:
      break;
  }
  return null;
});