getHostStatus method

Future<XRPCResponse<SyncGetHostStatusOutput>> getHostStatus({
  1. required String hostname,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Returns information about a specified upstream host, as consumed by the server. Implemented by relays.

Implementation

Future<XRPCResponse<SyncGetHostStatusOutput>> getHostStatus({
  required String hostname,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await comAtprotoSyncGetHostStatus(
  hostname: hostname,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);