feat: Take care of i18n

This commit is contained in:
2023-07-28 17:32:14 +02:00
parent f90b3866ab
commit adb8ee88d1
12 changed files with 277 additions and 52 deletions

View File

@@ -13,8 +13,9 @@ class AndroidNotificationsImplementation extends NotificationsImplementation {
String title,
String id,
bool urgent,
NotificationI18nData i18n,
) async {
return _api.createNotificationChannel(title, id, urgent);
return _api.createNotificationChannel(title, id, urgent, i18n);
}
@override