controllerStream method

dynamic controllerStream()

bind the tap location.

Implementation

controllerStream() {
  streamController.stream.listen((event) {
    Offset offsetData = event.first as Offset;
    Offset stDataFirst = offsetData;
    showMyDialog(con, stDataFirst, dialogText: event.last as String);
  });
}