cancelStream property
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;
Called when the Cancel button is clicked.
If the event handler calls $event.cancel()
, the step won't be cancelled.
@Output('cancel')
Stream<AsyncAction<bool>> get cancelStream => _cancelController.stream;