Telemetry constructor
Telemetry({
- double? connectionTimeSeconds,
- Reconnection? reconnection,
Implementation
factory Telemetry({
$core.double? connectionTimeSeconds,
Reconnection? reconnection,
}) {
final result = create();
if (connectionTimeSeconds != null)
result.connectionTimeSeconds = connectionTimeSeconds;
if (reconnection != null) result.reconnection = reconnection;
return result;
}