DBTreeViewState constructor

DBTreeViewState(
  1. String rootNodeKey,
  2. GeigerApi api
)

Implementation

DBTreeViewState(String rootNodeKey, this.api) {
  ///Init Rootnode
  rootNode = Node(
      key: rootNodeKey, label: rootNodeKey, data: rootNodeKey, children: []);
}