cancelStream property

  1. @Output('cancel')
Stream<AsyncAction<bool>> get cancelStream

Called when the Cancel button is clicked.

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

Implementation

@Output('cancel')
Stream<AsyncAction<bool>> get cancelStream => _cancelController.stream;