IpAddress constructor

IpAddress({
  1. required String type,
  2. required String? ipv4Address,
  3. required String? ipv6Address,
})

Implementation

IpAddress({
  required this.type,
  required this.ipv4Address,
  required this.ipv6Address,
});