NiceNetworkDiscoveryPanel constructor

const NiceNetworkDiscoveryPanel({
  1. Key? key,
  2. required List<NetworkNode> nodes,
  3. VoidCallback? onRefresh,
  4. ValueChanged<NetworkNode>? onPing,
  5. ValueChanged<NetworkNode>? onDetails,
  6. bool isScanning = false,
  7. String? subnet,
  8. bool showFilters = true,
})

Implementation

const NiceNetworkDiscoveryPanel({
  super.key,
  required this.nodes,
  this.onRefresh,
  this.onPing,
  this.onDetails,
  this.isScanning = false,
  this.subnet,
  this.showFilters = true,
});