clearDeviceInterests method

  1. @override
Future<void> clearDeviceInterests()
override

Unsubscribes all interests from this device.

Example Usage

function someAsyncFunction() async {
  await PusherBeams.instance.clearDeviceInterests();
}

Throws an Exception in case of failure.

Implementation

@override
Future<void> clearDeviceInterests() async {
  await _pusherBeamsApi.clearDeviceInterests();
}