merge method

ControlArgs merge(
  1. ControlArgs args
)

Combines this store with given args. Returns new ControlArgs that contains both args.

Implementation

ControlArgs merge(ControlArgs args) {
  final store = ControlArgs.of(this);
  store._args.addAll(args._args);

  return store;
}