loadValidatedSchema method

Future<LoadedSchemaDocument> loadValidatedSchema(
  1. String schemaPath
)

File-backed loading is unavailable on web builds.

Implementation

Future<LoadedSchemaDocument> loadValidatedSchema(String schemaPath) {
  throw UnsupportedError(
    'SchemaWorkflow.loadValidatedSchema is not available on web targets. '
    'Use loadValidatedSchemaSource(...) with schema text instead.',
  );
}