of static method
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;
}
static TableProto of(Type type) {
TableProto? p = _tableRegisterMap[type];
if (p == null) {
errorSQL("NO table proto of $type found, register it first. ");
}
return p;
}