writeBloodOxygen method

Future<bool> writeBloodOxygen({
  1. required double saturation,
  2. required DateTime start,
  3. required DateTime end,
  4. double flowRate = 0.0,
})

Implementation

Future<bool> writeBloodOxygen({
  required double saturation,
  required DateTime start,
  required DateTime end,
  double flowRate = 0.0,
}) {
  return health.writeBloodOxygen(
    saturation: saturation,
    startTime: start,
    endTime: end,
    flowRate: flowRate,
  );
}