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