dataListsGet method

Future<DataListsGet200Response?> dataListsGet({
  1. String? next,
  2. String? sort,
})

Get all lists of the current user.

Returns metadata describing the lists of the current user. Might be truncated and include a continuation token. Request must be authenticated with a MediaWiki session cookie. Stability: unstable

Parameters:

  • String next: Continuation parameter from previous request

  • String sort: Sort order - name: by name, ascending; - updated: by last modification date, descending.

Implementation

Future<DataListsGet200Response?> dataListsGet({
  String? next,
  String? sort,
}) async {
  final response = await dataListsGetWithHttpInfo(
    next: next,
    sort: sort,
  );
  if (response.statusCode >= HttpStatus.badRequest) {
    throw ApiException(response.statusCode, await _decodeBodyBytes(response));
  }
  // When a remote server returns no body with a status of 204, we shall not decode it.
  // At the time of writing this, `dart:convert` will throw an "Unexpected end of input"
  // FormatException when trying to decode an empty string.
  if (response.body.isNotEmpty &&
      response.statusCode != HttpStatus.noContent) {
    return await apiClient.deserializeAsync(
      await _decodeBodyBytes(response),
      'DataListsGet200Response',
    ) as DataListsGet200Response;
  }
  return null;
}