copyWith method

CallServer copyWith({
  1. int? id,
  2. String? ipAddress,
  3. String? ipv6Address,
  4. int? port,
  5. CallServerType? type,
})

Implementation

CallServer copyWith({
  int? id,
  String? ipAddress,
  String? ipv6Address,
  int? port,
  CallServerType? type,
}) =>
    CallServer(
      id: id ?? this.id,
      ipAddress: ipAddress ?? this.ipAddress,
      ipv6Address: ipv6Address ?? this.ipv6Address,
      port: port ?? this.port,
      type: type ?? this.type,
    );