In my task ListView should show some default item when is it is created, and user is able to change the choice.
Before 19.3 version update I did the next:
private void OnCreated()
{
if (Value != null) FilterListView..SelectItem(Value);
else if (NotSet != null) FilterListView.SelectItem(NotSet);
StateHasChanged();
}
Now SelectItem method does not exist. What is the alternative for programmatical cho