createAndSendResult method
This method should be implemented in all the Widgets which are producing
an RPResult
object.
Implementation
@override
void createAndSendResult() {
if (tugResult != null) {
blocTask.sendStepResult(tugResult!);
widget.onResultChange(tugResult);
}
}