sendCommandToUsb method
Implementation
@override
Future<bool?> sendCommandToUsb(Uint8List command) async {
try {
final bool result =
await methodChannel.invokeMethod('sendCommandToUsb', command);
//log('Result: $result');
return result;
} on PlatformException {
//log("Error: ${e.message}");
return false;
}
}