DatabaseWrapper constructor

DatabaseWrapper()

Constructor for DatabaseWrapper.

If the local database is supported by the host OS, the init method is called to initialize the database.

Implementation

DatabaseWrapper() {
  if (OSUtils.isLocalDatabaseSupportedOnHostOS()) {
    init();
  }
}