addSub method

void addSub(
  1. String key,
  2. String subKey
)

Implementation

void addSub(String key, String subKey) {
  arguments.putIfAbsent(key, () => Map<String, String?>());
  arguments[key][subKey] = null;
}