With the DSLink SDK, you can provide IoT data to any DSA compatible consumer.
This SDK is maintained by DGLogik and other open source contributors.
DSLink's API is very simple!
import "package:dslink/link.dart";
void main() {
var link = new DSLink("MyLink");
var examples = link.createRootNode("Examples");
var integerNode = examples.createChild("Integer Point 1", value: 1);
link.connect("broker.example.com").then((_) {
print("Connected.");
});
}