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