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
In the original Objective-C library of this binding several parameters (title, image, style and completion) are nullable as can be seen in this example:
[self.navigationController.view makeToast:@"This is a piece of toast with a title"
duration:2.0
position:CSToastPositionTop
title:nil
image:nil
style:nil
completion:nil];
However, in the binding calling the following method results in an ArgumentNullException:
In the original Objective-C library of this binding several parameters (
title
,image
,style
andcompletion
) are nullable as can be seen in this example:However, in the binding calling the following method results in an ArgumentNullException:
myView.MakeToast("Test text", 2.0f, CSToastPosition.Top, null, null, null, null);
It seems these parameters haven't had their [NullAllowed] attributes set.
The text was updated successfully, but these errors were encountered: