copyWith method

PingProxy copyWith({
  1. int? proxyId,
})

Implementation

PingProxy copyWith({
  int? proxyId,
}) =>
    PingProxy(
      proxyId: proxyId ?? this.proxyId,
    );