create method
Future<CustomApp>
create(
- CustomApp request,
- String account, {
- String? $fields,
- UploadOptions uploadOptions = commons.UploadOptions.defaultOptions,
- Media? uploadMedia,
Creates a new custom app.
request
- The metadata request object.
Request parameters:
account
- Developer account ID.
$fields
- Selector specifying which fields to include in a partial
response.
uploadMedia
- The media to upload.
uploadOptions
- Options for the media upload. Streaming Media without
the length being known ahead of time is only supported via resumable
uploads.
Completes with a CustomApp.
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<CustomApp> create(
CustomApp request,
core.String account, {
core.String? $fields,
commons.UploadOptions uploadOptions = commons.UploadOptions.defaultOptions,
commons.Media? uploadMedia,
}) async {
final body_ = convert.json.encode(request);
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
core.String url_;
if (uploadMedia == null) {
url_ = 'playcustomapp/v1/accounts/' +
commons.escapeVariable('$account') +
'/customApps';
} else if (uploadOptions is commons.ResumableUploadOptions) {
url_ = '/resumable/upload/playcustomapp/v1/accounts/' +
commons.escapeVariable('$account') +
'/customApps';
} else {
url_ = '/upload/playcustomapp/v1/accounts/' +
commons.escapeVariable('$account') +
'/customApps';
}
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
uploadMedia: uploadMedia,
uploadOptions: uploadOptions,
);
return CustomApp.fromJson(response_ as core.Map<core.String, core.dynamic>);
}