tw_getParam method

dynamic tw_getParam(
  1. String key,
  2. int paramIdx
)

Retrieve a parameter that was recorded with the last invocation that was recorded with key.

Implementation

dynamic tw_getParam(String key, int paramIdx) {
	return this._mapInvocations[key]!.last.arrParams![paramIdx];
}