stopNotifications method

  1. @override
Future<Map?> stopNotifications(
  1. String deviceId,
  2. String service,
  3. String characteristic,
  4. int timeout,
)
override

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;
}