readLicences method

Future<List<Licence>> readLicences()

Implementation

Future<List<Licence>> readLicences() async {
  try {
    return await ManagerSDKF().readLicences();
  } catch (e) {
    LOG.printError([_tag, e.toString()]);
    throw "No se pudo cargar las licencias asociadas a este dispositivo";
  }
}