writeBloodOxygen method
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,
);
}