TableProto constructor

TableProto(
  1. Type type
)

Implementation

factory TableProto(Type type) {
  TableProto? p = _tableRegisterMap[type];
  if (p == null) {
    errorSQL("NO table proto of '$type' found, register it first.");
  }
  return p;
}