returnValue property
RemoteObject?
get
returnValue
The value being returned, if the function is at return point.
(optional)
Implementation
RemoteObject? get returnValue {
return json.containsKey('returnValue')
? RemoteObject(json['returnValue'] as Map<String, dynamic>)
: null;
}