emsrGetDeviceInfo method
Returns general information about the encrypted head - firmware version, ident, serial number
Implementation
Future<Map?> emsrGetDeviceInfo() async {
try {
final Map? result = await _channel.invokeMethod('emsrGetDeviceInfo');
return result;
} catch (error) {
print(error);
}
}