copyWith method

Ipv4 copyWith({
  1. List<int>? ipv4,
})

Implementation

Ipv4 copyWith({
  List<int>? ipv4,
}) {
  return Ipv4(
    ipv4 ?? this.ipv4,
  );
}