checkTarget method

Future<TargetReport> checkTarget({
  1. required NetworkTarget target,
})

Performs a targeted reachability probe against a single endpoint.

target: The configuration for the endpoint to probe.

Implementation

Future<TargetReport> checkTarget({required NetworkTarget target}) =>
    _probesRepository.checkTarget(target: target);