OnvifNetworkInterface constructor

const OnvifNetworkInterface({
  1. required String token,
  2. required bool enabled,
  3. required bool dhcp,
  4. String? ipv4Address,
  5. int? prefixLength,
  6. String? hwAddress,
})

Implementation

const OnvifNetworkInterface({
  required this.token,
  required this.enabled,
  required this.dhcp,
  this.ipv4Address,
  this.prefixLength,
  this.hwAddress,
});