sendBluetoothData method
Implementation
@override
Future<void> sendBluetoothData(String deviceId, List<int> data) async {
await methodChannel.invokeMethod('sendBluetoothData', {
'deviceId': deviceId,
'data': data,
});
}
@override
Future<void> sendBluetoothData(String deviceId, List<int> data) async {
await methodChannel.invokeMethod('sendBluetoothData', {
'deviceId': deviceId,
'data': data,
});
}