Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 11, 2018 13:56
Show Gist options
  • Save Rahiche/5d1fe0e9ea30ae0823df7b83bf74f593 to your computer and use it in GitHub Desktop.
Save Rahiche/5d1fe0e9ea30ae0823df7b83bf74f593 to your computer and use it in GitHub Desktop.
getClient(int id) async {
final db = await database;
var res =await db.query("Client", where: "id = ?", whereArgs: [id]);
return res.isNotEmpty ? Client.fromMap(res.first) : Null ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment