create method

Future<Row> create(
  1. Row request,
  2. String parent, {
  3. String? view,
  4. String? $fields,
})

Creates a row.

request - The metadata request object.

Request parameters:

parent - Required. The parent table where this row will be created. Format: tables/{table} Value must have pattern ^tables/\[^/\]+$.

view - Optional. Column key to use for values in the row. Defaults to user entered name. Possible string values are:

  • "VIEW_UNSPECIFIED" : Defaults to user entered text.
  • "COLUMN_ID_VIEW" : Uses internally generated column id to identify values.

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

Completes with a Row.

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<Row> create(
  Row request,
  core.String parent, {
  core.String? view,
  core.String? $fields,
}) async {
  final _body = convert.json.encode(request.toJson());
  final _queryParams = <core.String, core.List<core.String>>{
    if (view != null) 'view': [view],
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1alpha1/' + core.Uri.encodeFull('$parent') + '/rows';

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