BasisDevice constructor

BasisDevice(
  1. String id,
  2. String name,
  3. String model
)

Implementation

BasisDevice(this.id, this.name, this.model) {
  _controller = StreamController<ListenEvent>();
  _controller.stream.asyncMap(_funcListen).listen((event) {});
}