dataEndPoint property
Specifies where and how to stored or upload the data collected from this
deployment. If null
, the sensed data is not stored, but may still be
used in the app.
Implementation
@JsonKey(includeFromJson: false, includeToJson: false)
DataEndPoint? get dataEndPoint => _data.dataEndPoint;
set
dataEndPoint
(DataEndPoint? dataEndPoint)
Implementation
set dataEndPoint(DataEndPoint? dataEndPoint) =>
_data.dataEndPoint = dataEndPoint;