createRequest method
Creates a message object that can deserialize a request.
Implementation
$pb.GeneratedMessage createRequest($core.String method) {
switch (method) {
case 'Allocate':
return $0.AllocationRequest();
default:
throw $core.ArgumentError('Unknown method: $method');
}
}