UNKNOWN property

FrameKind UNKNOWN
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:

Implementation

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