isNotOpenApiV3Schema property

bool get isNotOpenApiV3Schema

Returns true if the object is not a known OpenAPI v3 schema type.

Implementation

bool get isNotOpenApiV3Schema {
  return this != null &&
      (runtimeType != ReferenceObject &&
          (!_openApiV3SchemaTypes.contains(runtimeType) &&
              !_openApiV3SchemaTypes.contains(this)) &&
          (this is! List && this is! Map));
}