EMBED property

FrameKind EMBED
final

Indicates that the frame is an embed element.

Officially Supported Platforms/Implementations:

Implementation

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