initializeNetworkTools function
Initializes the ARP table and vendor table map for network operations.
Implementation
Future<void> initializeNetworkTools(bool rebuildData) async {
configureDependencies(Env.prod);
if (rebuildData) {
await getIt<Repository<ARPData>>().clear();
}
await getIt<Repository<ARPData>>().build();
await getIt<Repository<Vendor>>().build();
}