Skip to content

Commit

Permalink
[flutter_local_notifications] Fix crash on latest Flutter master due …
Browse files Browse the repository at this point in the history
…to ambiguous method call (#2355)

* fix crash on latest flutter master

* fix whitespace (I think)

---------

Co-authored-by: Gray Mackall <mackall@google.com>
  • Loading branch information
gmackall and Gray Mackall authored Jun 29, 2024
1 parent 27e3191 commit 053ee0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1045,7 +1045,7 @@ private static void setBigPictureStyle(
}

if (bigPictureStyleInformation.hideExpandedLargeIcon) {
bigPictureStyle.bigLargeIcon(null);
bigPictureStyle.bigLargeIcon((Bitmap) null);
} else {
if (bigPictureStyleInformation.largeIcon != null) {
bigPictureStyle.bigLargeIcon(
Expand Down

0 comments on commit 053ee0b

Please sign in to comment.