scalarTimeseries method
Implementation
Future<Response<GroupedScalarTimeseriesResponse>> scalarTimeseries(
ScalarTimeseriesResource resource,
String userId,
DateTime startDate, {
DateTime? endDate,
String? provider,
String? nextCursor,
}) {
return _scalarTimeseriesRequest(
userId,
resource.toJson(),
startDate.toIso8601String(),
endDate: endDate?.toIso8601String(),
provider: provider,
nextCursor: nextCursor,
);
}