Blazor Switch initial default value setting

I would like to set the default value for a switch component on an ADD page that contains a form with a Blazor Switch component. Currently the default is set to false on the switch and I want to be able to toggle it to "true" when a user is adding a new record. Usually there is a way to set the value property on a component but I do not see that on a Blazor Switch toggle component. Any way to set that on load of the Add page?

I think I figured it out. Similar to a Checkbox, the only way to set a default value is to use a property on page load set the value you would like to have as the default and then set the component's VALUE to that property. Then the switch will take on the value of the property you created and set. Works for me now.