iWant method

IWant iWant(
  1. String motivation
)

Transitions to the motivation phase driven by this situation.

Example: .iWant('to receive an immediate alert')

Implementation

IWant iWant(String motivation) {
  context.builder.addNarrativeStep(IWantStepData(motivation));
  return IWant(context);
}