serviceHealthCheck method
Future<ServiceHealthCheckResponse>
serviceHealthCheck({
- required String apiKey,
- dynamic hint,
override
See BreezServices::service_health_check
Implementation
Future<ServiceHealthCheckResponse> serviceHealthCheck({required String apiKey, dynamic hint}) {
var arg0 = _platform.api2wire_String(apiKey);
return _platform.executeNormal(FlutterRustBridgeTask(
callFfi: (port_) => _platform.inner.wire_service_health_check(port_, arg0),
parseSuccessData: _wire2api_service_health_check_response,
parseErrorData: _wire2api_FrbAnyhowException,
constMeta: kServiceHealthCheckConstMeta,
argValues: [apiKey],
hint: hint,
));
}