SpecificDatabase constructor

SpecificDatabase(
  1. DatabaseRepository database,
  2. String databaseName
)

database has all of the underlying database implementation for all of the database functions of this object.

databaseName is the value passed as the database in all of the database functions of this object.

Implementation

SpecificDatabase(this.database, this.databaseName);