getAllPredios method

Future<List<Map<String, dynamic>>> getAllPredios()

Implementation

Future<List<Map<String, dynamic>>> getAllPredios() async {
  final db = await database;
  return await db.query('predios');
}