merge method

void merge(
  1. Voyager other
)

merges other Voyager instance into this one

Implementation

void merge(Voyager other) {
  if (_locked) {
    throw FlutterError("Voyager is in lockdown.");
  }
  _output.addAll(other._output);
  _config.addAll(other._config);
}