appBskyUnspeccedGetConfig function

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

Get miscellaneous runtime configuration.

Implementation

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