getIfua method

Future<List> getIfua()

Implementation

Future<List> getIfua() async {
  final db = await PortalEazeSqlService.db();
  final data = await sqlRunRead(
    db: db,
    tableName: 'ifua',
  );

  if (data.isEmpty) return [];
  return data;
}