db property
String?
get
db
获得存储数据库目录 >>>
Implementation
String? get db {
if (_library == null) {
throw Exception('Need run setup at first or use dbAsync');
}
return _db;
}
获得存储数据库目录 >>>
String? get db {
if (_library == null) {
throw Exception('Need run setup at first or use dbAsync');
}
return _db;
}