connect static method

Future<Database> connect()

Implementation

static Future<Database> connect() async {
  var database = openDatabase(databaseName);
  return database;
}