merge method

void merge(
  1. Map<String, dynamic>? other
)

Merge other values into this controller. Values in other overwrite existing ones.

Implementation

void merge(Map<String, dynamic>? other) {
  if (other == null || other.isEmpty) return;
  _args.addAll(other);
}