processData method
Send data to binded widget automatically triggering a rebuild
Implementation
void processData(ModResourceResult<Out>? data) {
//XXX: send data down the pipe...
if (!this.controller.isClosed) {
this.controller.sink.add(data);
}
}