DBRepositoryAdapter<O> constructor

DBRepositoryAdapter<O>(
  1. DBAdapter<Object> databaseAdapter,
  2. String name, {
  3. String? tableName,
  4. Type? type,
})

Implementation

DBRepositoryAdapter(
  this.databaseAdapter,
  this.name, {
  String? tableName,
  Type? type,
}) : tableName = tableName ?? name,
     type = type ?? O;