removeDeviceInterest method

  1. @override
Future<void> removeDeviceInterest(
  1. String interest
)
override

Removes an interest in this device.

Example Usage

function someAsyncFunction() async {
  await PusherBeams.instance.removeDeviceInterest('banana');
}

Throws an Exception in case of failure.

Implementation

@override
Future<void> removeDeviceInterest(String interest) async {
  await _pusherBeamsApi.removeDeviceInterest(interest);
}