getConfig method

Future<XRPCResponse<GetConfigOutput>> getConfig({
  1. Map<String, String>? $unknown,
  2. Map<String, String>? $headers,
  3. GetClient? $client,
})

Get details about ozone's server configuration.

https://atprotodart.com/docs/lexicons/tools/ozone/server/getConfig

Implementation

Future<XRPCResponse<GetConfigOutput>> getConfig({
  Map<String, String>? $unknown,
  Map<String, String>? $headers,
  GetClient? $client,
}) async =>
    await _ctx.get<GetConfigOutput>(
      ns.toolsOzoneServerGetConfig,
      headers: $headers,
      to: const GetConfigOutputConverter().fromJson,
      client: $client,
    );