copyWith method
CallServer
copyWith({
- int? id,
- String? ipAddress,
- String? ipv6Address,
- int? port,
- 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,
);