sendCommandBundle method
Future<void>
sendCommandBundle({
- required String command,
- required Map<
String, dynamic> value, - String? commandTag,
- bool requestResult = true,
override
Sends a command with a Map value to DataWedge.
Implementation
@override
Future<void> sendCommandBundle({
required String command,
required Map<String, dynamic> value,
String? commandTag,
bool requestResult = true,
}) {
return methodChannel.invokeMethod<void>(
'sendCommandBundle',
<String, dynamic>{
'command': command,
'value': value,
'commandTag': commandTag,
'requestResult': requestResult,
},
);
}