Example #1
0
 public static void Toggle(this IBoolItem item) =>
 item.BoolValue = !item.BoolValue;
Example #2
0
 public ToggleButtonModel(string title, IBoolItem item)
 {
     Title = title;
     Item  = item;
 }