read method

  1. @Deprecated("Use top-level `read` in vital_health instead")
Future<ProcessedData?> read(
  1. HealthResource resource,
  2. DateTime startDate,
  3. DateTime endDate
)

Implementation

@Deprecated("Use top-level `read` in vital_health instead")
Future<ProcessedData?> read(
    HealthResource resource, DateTime startDate, DateTime endDate) {
  return VitalHealthPlatform.instance.read(resource, startDate, endDate);
}