Closed naresh1998-code closed 4 months ago
[ObservableProperty] [NotifyPropertyChangedFor(nameof(IsNotBusy))] bool isBusy; <-- i is small case
i
[ObservableProperty] string title;
public bool IsNotBusy = !IsBusy; <-- i is capitalized Changed to !isBusy
When you add [ObservableProperty] it generates the IsBusy
[ObservableProperty]
Thank You for the explanation. 👍
[ObservableProperty] [NotifyPropertyChangedFor(nameof(IsNotBusy))] bool isBusy; <--
i
is small case[ObservableProperty] string title;
public bool IsNotBusy = !IsBusy; <--
i
is capitalized Changed to !isBusy