getAllProperties method

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

Implementation

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