readAll method

Future<List<ItemValue>> readAll()

Implementation

Future<List<ItemValue>> readAll() async {
  try {
    final items = await reader.getValues();
    return items;
  } catch (err) {
    throw Exception("La lectura de las variables fallo");
  }
}