deviceID method

Future<String> deviceID()

Implementation

Future<String> deviceID() async {
  try {
    return await ManagerSDKF().deviceID();
  } catch (e) {
    LOG.printError([_tag, e.toString()]);
    throw "No fue posible leer la identificación del dispositivo";
  }
}