getSchema method

Future<SchemaDto> getSchema(
  1. String id
)

Introspects the schema of instance id.

Implementation

Future<SchemaDto> getSchema(String id) async =>
    SchemaDto.fromJson(await _call(BasaltExtension.getSchema, {'id': id}));