registerRescheduleNotifications method
void
registerRescheduleNotifications()
注册自启动通知广播【仅Android平台】
Implementation
void registerRescheduleNotifications() async {
var isClose = await isCloseSelfStarting();
if (Platform.isAndroid && (isClose ?? false)) {
CloudChannelManager.instance.send(_rescheduleNotifications);
}
}