copyWith method

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

Copy model with modified properties.

Properties:

  • proxy_id: Proxy identifier

Implementation

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