append method
Append a batch
of data measures to this data stream.
If compress
is true, the data is compressed before upload.
Implementation
Future<void> append(
List<DataStreamBatch> batch, {
bool compress = true,
}) async =>
await service.appendToDataStreams(
studyDeploymentId,
batch,
compress: compress,
);