Closed guyluz11 closed 8 months ago
Attention: 8 lines
in your changes are missing coverage. Please review.
Comparison is base (
4332cd4
) 76.39% compared to head (be62b4a
) 74.14%. Report is 1 commits behind head on dev.
Files | Patch % | Lines |
---|---|---|
.../src/services/impls/mdns_scanner_service_impl.dart | 28.57% | 5 Missing :warning: |
lib/src/models/mdns_info.dart | 0.00% | 3 Missing :warning: |
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Made services singleton to not use static everywhere and to support instances for the flutter overrides.
Also removed the use of injection and getit packages.
Changed class names: HostScanner --> HostScannerService PortScanner --> PortScannerService
Usage example Old:
HostScanner.x();
ARPService.x();
PortScanner.x();
New:
HostScannerService.instance.x();
ARPService.instance.x();
PortScannerService.instance.x();
Fix: https://github.com/osociety/network_tools_flutter/issues/38
This pr does not change the package logic.