sendECGHeartRate method

Future<void> sendECGHeartRate(
  1. int heartRate
)

Using the measured data, the instantaneous heart rate is calculated through the ECG algorithm library and sent to the watch.

Implementation

Future<void> sendECGHeartRate(int heartRate) {
  return _platform.sendECGHeartRate(heartRate);
}