tableName property
Implementation
@protected
String get tableName => _tableNameCache.putIfAbsent(
runtimeType,
() => toSnakeCase(Pluralize().make(runtimeType.toString())).toLowerCase(),
);
set
tableName
(String table)
Implementation
set tableName(String table) {
_table = table;
}