You supplied: @SuppliedValue
I computed: @ComputedValue
@functions {
public int SuppliedValue { get; set; }
// TODO: Instead of computing this in the getter, override OnParametersChanged or whatever
// it ends up being called when that's implemented on BlazorComponent
private int ComputedValue
=> SuppliedValue * 2;
}