read function

  1. @Deprecated("Local read is being sunset.")
Future<ProcessedData?> read(
  1. HealthResource resource,
  2. DateTime startDate,
  3. DateTime endDate
)

Implementation

@Deprecated("Local read is being sunset.")
Future<ProcessedData?> read(
    HealthResource resource, DateTime startDate, DateTime endDate) {
  return VitalHealthPlatform.instance.read(resource, startDate, endDate);
}