start method

void start()

Implementation

void start() {
  _sub ??= NativeDeviceOrientationCommunicator()
      .onOrientationChanged(useSensor: true)
      .listen((n) => _ctrl.add(_map(n)));
}