Telemetry constructor

Telemetry({
  1. double? connectionTimeSeconds,
  2. 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;
}