getValue method
Implementation
@override
getValue(DartBlockArbiter arbiter) {
var result = customFunctionCall.run(arbiter);
if (result == null || result.returnValue == null) {
// An error should be thrown here.
} else {
return result.returnValue;
}
}