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