Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 11, 2018 13:56
Show Gist options
  • Save Rahiche/d6f896bcb005f0a9cff2a3d5bfbb8e92 to your computer and use it in GitHub Desktop.
Save Rahiche/d6f896bcb005f0a9cff2a3d5bfbb8e92 to your computer and use it in GitHub Desktop.
static Database _database;
Future<Database> get database async {
if (_database != null)
return _database;
// if _database is null we instantiate it
_database = await initDB();
return _database;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment