<InputText class="input-checkbox100" id="ckb1" name="validateUSPSAddress" disabled="@true" @bind-Value="_model.CheckUSPSValidation" />
In my model, I have defined CheckUSPSValidation as
public bool CheckUSPSValidation { get; set; }
The error I receive is the following. I don't understand why it's trying to convert bool to string
Severity Code Description Project File Line Suppression State Error CS1503 Argument 1: cannot convert from 'bool' to 'string' 219 N/A
CheckUSPSValidation.ToString()<InputCheckbox>?