getTableSchema method

TableSchema? getTableSchema(
  1. String name
)

Implementation

TableSchema? getTableSchema(String name) {
  final key = _findTableKey(name);
  return key != null ? _tables[key]?.schema : null;
}