execute method

void execute(
  1. Status status
)

Implementation

void execute(Status status) {
  _status = status;
  if (status.tag == _functionTag) {
    if (!_loaded) {
      _result = call(_status);
      _loaded = true;
    }
    if (ret != null) {
      if (status.data == null) {
        status.data = {};
      }
      status.data[ret] = _result;
    }
  }
}