mirror of
https://github.com/StarCitizenToolBox/app.git
synced 2026-01-13 19:50:28 +00:00
53 lines
1.8 KiB
Dart
53 lines
1.8 KiB
Dart
// This file is automatically generated, so please do not edit it.
|
|
// @generated by `flutter_rust_bridge`@ 2.11.1.
|
|
|
|
// ignore_for_file: invalid_use_of_internal_member, unused_import, unnecessary_import
|
|
|
|
import '../frb_generated.dart';
|
|
import '../http_package.dart';
|
|
import 'package:flutter_rust_bridge/flutter_rust_bridge_for_generated.dart';
|
|
|
|
// These functions are ignored because they are not marked as `pub`: `_my_method_to_hyper_method`
|
|
|
|
Future<void> setDefaultHeader({required Map<String, String> headers}) =>
|
|
RustLib.instance.api.crateApiHttpApiSetDefaultHeader(headers: headers);
|
|
|
|
Future<RustHttpResponse> fetch({
|
|
required MyMethod method,
|
|
required String url,
|
|
Map<String, String>? headers,
|
|
Uint8List? inputData,
|
|
String? withIpAddress,
|
|
bool? withCustomDns,
|
|
}) => RustLib.instance.api.crateApiHttpApiFetch(
|
|
method: method,
|
|
url: url,
|
|
headers: headers,
|
|
inputData: inputData,
|
|
withIpAddress: withIpAddress,
|
|
withCustomDns: withCustomDns,
|
|
);
|
|
|
|
Future<List<String>> dnsLookupTxt({required String host}) =>
|
|
RustLib.instance.api.crateApiHttpApiDnsLookupTxt(host: host);
|
|
|
|
Future<List<String>> dnsLookupIps({required String host}) =>
|
|
RustLib.instance.api.crateApiHttpApiDnsLookupIps(host: host);
|
|
|
|
/// Get the fastest URL from a list of URLs by testing them concurrently.
|
|
/// Returns the first URL that responds successfully, canceling other requests.
|
|
///
|
|
/// # Arguments
|
|
/// * `urls` - List of base URLs to test
|
|
/// * `path_suffix` - Optional path suffix to append to each URL (e.g., "/api/version")
|
|
/// If None, tests the base URL directly
|
|
Future<String?> getFasterUrl({
|
|
required List<String> urls,
|
|
String? pathSuffix,
|
|
}) => RustLib.instance.api.crateApiHttpApiGetFasterUrl(
|
|
urls: urls,
|
|
pathSuffix: pathSuffix,
|
|
);
|
|
|
|
enum MyMethod { options, gets, post, put, delete, head, trace, connect, patch }
|