of static method

TableProto of(
  1. Type type
)

Implementation

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