You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class OnNotification {
final String? title;
final String? summary;
final Map? extras;//这里类型由String改为Map
OnNotification(this.title, this.summary, this.extras);
}
希望作者可以尽早修复这个小问题
The text was updated successfully, but these errors were encountered:
在2.5.1版本中 rammus-2.5.1\lib\src\cloud_push_message.dart文件中
extras类型为String 而在 RammusPushIntentService 中
extras是Map这样会报错的
有两种办法,
第一种是使用rammus-2.5.0 版本
另一种是需要改为
希望作者可以尽早修复这个小问题
The text was updated successfully, but these errors were encountered: