withParam method

KeyPageInstance withParam(
  1. List<String> param
)

Implementation

KeyPageInstance withParam(List<String> param) {
  assert(parameterCount == param.length,
      "The list of given parameters for page $key has the wrong length. (given: ${param.length}, needed: $parameterCount)");
  return KeyPageInstance(this, param);
}