getConnectionObject method

Future<Database?> getConnectionObject()
override

Implementation

Future<Database?> getConnectionObject() async{
  try{
    await _initSqliteFactory();
    return await openDatabase(databasePath);
  }
  catch(ex,stack){
    Simplify.getExceptionMessage(ex,stack: stack);
    return null;
  }
}