Untitled

user_9393521917 avatar
user_9393521917
plain_text
10/09/2022 3:36 PM
356 B
17
Indexable
 increment(int v) =>
      order[v] = order[v].copyWith(quantitySet: order[v].quantitySet + 1);
  @action
  decrement(int v) =>
      order[v] = order[v].copyWith(quantitySet: order[v].quantitySet - 1);
  @action
  setValue(int index, String value) {
    ord
Editor is loading...