我正在尝试将推送通知从我的Firebase发送到Flutter,到目前为止,它只需要添加清单代码并导入包即可。关键是我无法处理onLaunch,onMessage和onResume属性,除非我在main.dart的主体部分中包括消息传递小部件,并且主体中已经有我的Homepage小部件,而我的应用程序则从它们开始我可以处理吗?
RateMyApp rateMyApp = RateMyApp(
preferencesPrefix: 'rateMyApp_',
minDays: 1,
minLaunches: 1,
);
@override
void initState() {
super.initState();
if(rateMyApp.shouldOpenDialog){
rateMyApp.showRateDialog(context,title: 'hii', message: 'please like');
}