stopNotifications method
Implementation
@override
Future<Map<dynamic, dynamic>?> stopNotifications(String deviceId,
String service, String characteristic, int timeout) async {
final deriveData = await _methodChannel
.invokeMethod<Map<dynamic, dynamic>?>('stopNotifications', {
'deviceId': deviceId,
'service': service,
'characteristic': characteristic,
'timeout': timeout,
});
return deriveData;
}