continueStream property

  1. @Output.new('continue')
Stream<AsyncAction<bool>> get continueStream

Called when the Continue button is clicked.

If the event handler calls $event.cancel(), the step won't be continued.

Implementation

@Output('continue')
Stream<AsyncAction<bool>> get continueStream => _continueController.stream;