import 'package:nc_photos/mobile/android/notification.dart'; import 'package:nc_photos/platform/notification.dart' as itf; class AndroidItemDownloadSuccessfulNotification extends itf.ItemDownloadSuccessfulNotification { AndroidItemDownloadSuccessfulNotification(this.fileUris, this.mimeTypes); @override Future notify() { return Notification.notifyItemsDownloadSuccessful(fileUris, mimeTypes); } final List fileUris; final List mimeTypes; } class AndroidLogSaveSuccessfulNotification extends itf.LogSaveSuccessfulNotification { AndroidLogSaveSuccessfulNotification(this.fileUri); @override Future notify() { return Notification.notifyLogSaveSuccessful(fileUri); } final String fileUri; }