Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 11, 2018 13:56
Show Gist options
  • Save Rahiche/ee27409b24a56178d463b91a303c7edf to your computer and use it in GitHub Desktop.
Save Rahiche/ee27409b24a56178d463b91a303c7edf to your computer and use it in GitHub Desktop.
getAllClients() async {
final db = await database;
var res = await db.query("Client");
List<Client> list =
res.isNotEmpty ? res.map((c) => Client.fromMap(c)).toList() : [];
return list;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment