deleteSession function
Future<XRPCResponse<EmptyData> >
deleteSession({
- Protocol? $protocol,
- String? $service,
- RetryConfig? $retryConfig,
- Map<
String, String> ? $unknown, - Map<
String, String> ? $headers, - PostClient? $client,
Delete the current session. Requires auth.
https://atprotodart.com/docs/lexicons/com/atproto/server/deleteSession
Implementation
Future<XRPCResponse<EmptyData>> deleteSession({
Protocol? $protocol,
String? $service,
RetryConfig? $retryConfig,
Map<String, String>? $unknown,
Map<String, String>? $headers,
PostClient? $client,
}) async =>
await _$Fn(
protocol: $protocol,
service: $service,
retryConfig: $retryConfig,
).deleteSession(
$unknown: $unknown,
$headers: $headers,
$client: $client,
);