if reLoadPage
type is bool?
then you don't have to define as bool
after the variable name, it's unnecessary.
you can write like below
if (reLoadPage ?? false)
or with as bool
if (reLoadPage as bool? ?? false)
if reLoadPage
type is dynamic then
if((reLoadPage is bool) ? reLoadPage : false)