dataEndPoint property

  1. @JsonKey(includeFromJson: false, includeToJson: false)
DataEndPoint? dataEndPoint

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;
void dataEndPoint=(DataEndPoint? dataEndPoint)

Implementation

set dataEndPoint(DataEndPoint? dataEndPoint) =>
    _data.dataEndPoint = dataEndPoint;