sendCommandBundle method

Future<void> sendCommandBundle({
  1. required String command,
  2. required Map<String, dynamic> value,
  3. String? commandTag,
  4. bool requestResult = true,
})

Sends a command with a Map value to DataWedge.

Implementation

Future<void> sendCommandBundle({
  required String command,
  required Map<String, dynamic> value,
  String? commandTag,
  bool requestResult = true,
}) {
  throw UnimplementedError('sendCommandBundle() has not been implemented.');
}