Instruction generate(List linkParams)

Generate an Instruction based on the provided Route Link DSL.

Source

Instruction generate(List<dynamic> linkParams) {
  var ancestorInstructions = this._getAncestorInstructions();
  return this.registry.generate(linkParams, ancestorInstructions);
}