deleteSession function

Future<XRPCResponse<EmptyData>> deleteSession({
  1. Protocol? $protocol,
  2. String? $service,
  3. RetryConfig? $retryConfig,
  4. Map<String, String>? $unknown,
  5. Map<String, String>? $headers,
  6. PostClient? $client,
})

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,
    );