MoYoungBle constructor

MoYoungBle()

Constructs a singleton instance of MoYoungBle.

MoYoungBle is designed to work as a singleton.

Implementation

factory MoYoungBle() {
  // print("MoYoungBle");
  _singleton ??= MoYoungBle._();
  return _singleton!;
}