I'm creating my own handler method and I want to know how to implement a Bundle parameter that is optional.
In Android it would look like
public bool updateUI(int mode, Bundle... params)
{
switch (mode)
{
case 0: return doStuff(params.getString("Name"));
default: break;
}
}
This is not covered in the migration guide.