describeServer method

Future<XRPCResponse<ServerDescribeServerOutput>> describeServer({
  1. String? $service,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Describes the server's account creation requirements and capabilities. Implemented by PDS.

Implementation

Future<XRPCResponse<ServerDescribeServerOutput>> describeServer({
  String? $service,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoServerDescribeServer(
  $ctx: ctx,
  $service: $service,
  $headers: $headers,
  $unknown: $unknown,
);