deleteSession function
Future<XRPCResponse<EmptyData> >
deleteSession({
- Protocol? protocol,
- String? service,
- required String refreshJwt,
- RetryConfig? retryConfig,
- PostClient? client,
Implementation
Future<core.XRPCResponse<core.EmptyData>> deleteSession({
core.Protocol? protocol,
String? service,
required String refreshJwt,
core.RetryConfig? retryConfig,
final core.PostClient? client,
}) async => await comAtprotoServerDeleteSession(
$headers: {'Authorization': 'Bearer $refreshJwt'},
$ctx: core.ServiceContext(
service: service,
retryConfig: retryConfig,
postClient: client,
),
);