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