Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 11, 2018 13:56
Show Gist options
  • Save Rahiche/6b8ffc5587de888b43a8fa60448d0e52 to your computer and use it in GitHub Desktop.
Save Rahiche/6b8ffc5587de888b43a8fa60448d0e52 to your computer and use it in GitHub Desktop.
deleteClient(int id) async {
final db = await database;
db.delete("Client", where: "id = ?", whereArgs: [id]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment