removeNotificationChannel static method
Remove the channel Id that was created For android versions lower than 8.0 (API 26), this method has no function
Implementation
static Future<void> removeNotificationChannel(String channelId) async {
if(!Platform.isAndroid) return;
return await _channel.invokeMethod(
"Pushe.removeNotificationChannel", {"channelId": channelId});
}