copyWith method

Ipv6 copyWith({
  1. List<int>? ipv6,
})

Implementation

Ipv6 copyWith({
  List<int>? ipv6,
}) {
  return Ipv6(ipv6 ?? this.ipv6);
}