responseAsMessage property
T?
get
responseAsMessage
The normal, successful response of the operation.
See also response for the untyped version of this property.
Implementation
T? get responseAsMessage {
if (operationHelper == null) return null;
return response?.unpackFrom(operationHelper!.responseDecoder);
}