deleteNotificationChannel static method

Future<bool> deleteNotificationChannel(
  1. String channelId
)

删除通知渠道

channelId 要删除的渠道ID 返回 true 表示删除成功,false 表示失败

Implementation

static Future<bool> deleteNotificationChannel(String channelId) {
  return _platform.deleteNotificationChannel(channelId);
}