removeChannel method

  1. @override
Future<bool> removeChannel(
  1. String channelKey
)
override

Remove a notification channel

Implementation

@override
Future<bool> removeChannel(String channelKey) async {
  final bool wasRemoved = await methodChannel.invokeMethod(
      CHANNEL_METHOD_REMOVE_NOTIFICATION_CHANNEL, channelKey);
  return wasRemoved;
}