formatSchema method

Future<String> formatSchema(
  1. String schemaPath
)

File-backed formatting is unavailable on web builds.

Implementation

Future<String> formatSchema(String schemaPath) {
  throw UnsupportedError(
    'SchemaWorkflow.formatSchema is not available on web targets. '
    'Use formatSource(...) and persist the result with your own storage layer.',
  );
}