copyWith method
Implementation
@override
UpdateConnectionState copyWith({
ConnectionState? state,
dynamic extra,
int? clientId,
}) => UpdateConnectionState(
state: state ?? this.state,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);