Advertisement
joaopaulofcc

Untitled

Dec 19th, 2020
1,215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Dart 0.15 KB | None | 0 0
  1. Future<void> deleteDog(int id) async {
  2.     final db = await database;
  3.  
  4.     await db.delete(
  5.       'dogs',
  6.       where: "id = ?",
  7.  
  8.     );
  9.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement