createAndSendResult method

  1. @override
void createAndSendResult()
override

This method should be implemented in all the Widgets which are producing an RPResult object.

Implementation

@override
void createAndSendResult() {
  if (sromResult != null) {
    blocTask.sendStepResult(sromResult!);
    widget.onResultChange(sromResult);
  }
}