inspector property

SchemaInspector get inspector

Lazily exposes an inspector backed by the captured SchemaSnapshot.

Implementation

SchemaInspector get inspector {
  if (_inspector != null) {
    return _inspector!;
  }
  final snapshot = _requireSnapshot();
  _inspector = SchemaInspector(SnapshotSchemaDriver(snapshot));
  return _inspector!;
}