Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created June 30, 2022 09:29
Show Gist options
  • Save nbnD/2865b0bdef0a66c7dc88251afea97d50 to your computer and use it in GitHub Desktop.
Save nbnD/2865b0bdef0a66c7dc88251afea97d50 to your computer and use it in GitHub Desktop.
CRUD
static Future<sql.Database> db() async {
return sql.openDatabase(
'nabindhakal.db',
version: 1,
onCreate: (sql.Database database, int version) async {
await createTables(database);
},
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment