toolsOzoneServerGetConfig function

Future<XRPCResponse<ServerGetConfigOutput>> toolsOzoneServerGetConfig({
  1. required ServiceContext $ctx,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Get details about ozone's server configuration.

Implementation

Future<XRPCResponse<ServerGetConfigOutput>> toolsOzoneServerGetConfig({
  required ServiceContext $ctx,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await $ctx.get(
  ns.toolsOzoneServerGetConfig,
  headers: $headers,
  parameters: {...?$unknown},
  to: const ServerGetConfigOutputConverter().fromJson,
);