Need help trying to change the value of my Checkbox (mat-checkbox) Angular Material to a value such as 'T' and 'F' that can be passed when my form is submitted with my json object. This 'T' or 'F' from the JSON object is flipping a char flag on my backend. Any help would be appreciated, not sure why I can't seem to figure it out.
-----HTML------------
<div class="form-check">
<label class="form-check-label" style="padding-right: 10px;">Send to MIP</label>
<mat-checkbox name="mip" [ngModel]="mip" class="form-check-input" #mip="ngModel"></mat-checkbox>
</div>
------current value----
{ "mip": true }