We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02cb728 commit 398749fCopy full SHA for 398749f
pigeon/notifications.dart
@@ -52,6 +52,8 @@ abstract class AndroidNotificationHostApi {
52
void notify({
53
String? tag,
54
required int id,
55
+
56
+ // The remaining arguments go to method calls on NotificationCompat.Builder.
57
required String channelId,
58
int? color,
59
PendingIntent? contentIntent,
@@ -60,5 +62,6 @@ abstract class AndroidNotificationHostApi {
60
62
Map<String?, String?>? extras,
61
63
String? smallIconResourceName,
64
// NotificationCompat.Builder has lots more methods; add as needed.
65
+ // Keep them alphabetized, for easy comparison with that class's docs.
66
});
67
}
0 commit comments