tableName property

  1. @protected
String get tableName

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;
}