11 public override string? StringValue
13 get => this.SelectedOption?.Value;
16 if (
string.IsNullOrWhiteSpace(value))
18 this.SelectedOption =
null;
22 this.SelectedOption = this.
Options.FirstOrDefault(o => o.Value == value);
32 if (value is not
null)
33 this.RawValue = value;
The base KYC field model. Use as-is for generic fields, or subclass for custom logic.
ObservableCollection< KycOption > Options
All possible options (for picker, country, checkbox, radio).
Radio field (single option selection)