getCommand method

Future<Uint8List?> getCommand()

Implementation

Future<Uint8List?> getCommand() async {
  final command = await methodChannel.invokeMethod<Uint8List>('getCommand');
  return command;
}