presentNow method

void presentNow (
  1. Object what,
  2. {Map stepParms,
  3. Function rejector}
)

A shortcut to call SamModel.present with expState set to this SamModel.samState.

Implementation

void presentNow(Object what,{Map stepParms,Function rejector}) {
  this.present(this._samState,what,stepParms:stepParms,rejector:rejector);
}