NetworkInterfaceInfo constructor

const NetworkInterfaceInfo({
  1. required String name,
  2. required String ip,
  3. required String netmask,
  4. required String broadcast,
  5. required int prefixLength,
})

Implementation

const NetworkInterfaceInfo({
  required this.name,
  required this.ip,
  required this.netmask,
  required this.broadcast,
  required this.prefixLength,
});