Remove error from onPairingStateChange (#75)

* Remove error from onPairingStateChange

* Update ChangeLog and Readme

* Update Changelog
This commit is contained in:
Rohit Sangwan
2024-08-13 19:49:21 +05:30
committed by GitHub
parent 40819d5796
commit f7c05b2490
8 changed files with 17 additions and 19 deletions
+2 -2
View File
@@ -103,13 +103,13 @@ class MockUniversalBle extends UniversalBlePlatform {
@override
Future<bool> pair(String deviceId) async {
updatePairingState(deviceId, true, null);
updatePairingState(deviceId, true);
return true;
}
@override
Future<void> unpair(String deviceId) async {
updatePairingState(deviceId, false, null);
updatePairingState(deviceId, false);
}
@override