crateApiProbesCaptivePortalCheckForCaptivePortalWeb method
Future<CaptivePortalStatus>
crateApiProbesCaptivePortalCheckForCaptivePortalWeb({
- required BigInt timeoutMs,
override
Implementation
@override
Future<CaptivePortalStatus>
crateApiProbesCaptivePortalCheckForCaptivePortalWeb(
{required BigInt timeoutMs}) {
return handler.executeNormal(NormalTask(
callFfi: (port_) {
final serializer = SseSerializer(generalizedFrbRustBinding);
sse_encode_u_64(timeoutMs, serializer);
pdeCallFfi(generalizedFrbRustBinding, serializer,
funcId: 23, port: port_);
},
codec: SseCodec(
decodeSuccessData: sse_decode_captive_portal_status,
decodeErrorData: null,
),
constMeta: kCrateApiProbesCaptivePortalCheckForCaptivePortalWebConstMeta,
argValues: [timeoutMs],
apiImpl: this,
));
}