IFRAME property

FrameKind IFRAME
final

Indicates that the frame is an iframe.

Officially Supported Platforms/Implementations:

Implementation

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