get method
Gets a single review.
Request parameters:
packageName
- Package name of the app.
reviewId
- Unique identifier for a review.
translationLanguage
- Language localization code.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Review.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Review> get(
core.String packageName,
core.String reviewId, {
core.String? translationLanguage,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (translationLanguage != null)
'translationLanguage': [translationLanguage],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'androidpublisher/v3/applications/' +
commons.escapeVariable('$packageName') +
'/reviews/' +
commons.escapeVariable('$reviewId');
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return Review.fromJson(response_ as core.Map<core.String, core.dynamic>);
}