get method

Future<GoogleFirebaseAppdistroV1alphaApp> get(
  1. String mobilesdkAppId, {
  2. String? appView,
  3. String? $fields,
})

Get the app, if it exists

Request parameters:

mobilesdkAppId - Unique id for a Firebase app of the format: {version}:{project_number}:{platform}:{hash(bundle_id)} Example: 1:581234567376:android:aa0a3c7b135e90289

appView - App view. When unset or set to BASIC, returns an App with everything set except for aab_state. When set to FULL, returns an App with aab_state set. Possible string values are:

  • "APP_VIEW_UNSPECIFIED" : The default / unset value. The API will default to the BASIC view.
  • "BASIC" : Include everything except aab_state.
  • "FULL" : Include everything.

$fields - Selector specifying which fields to include in a partial response.

Completes with a GoogleFirebaseAppdistroV1alphaApp.

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<GoogleFirebaseAppdistroV1alphaApp> get(
  core.String mobilesdkAppId, {
  core.String? appView,
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if (appView != null) 'appView': [appView],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1alpha/apps/' + commons.escapeVariable('$mobilesdkAppId');

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return GoogleFirebaseAppdistroV1alphaApp.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}