orientationStream property

  1. @override
Stream<OrientationData> get orientationStream
override

Implementation

@override
Stream<OrientationData> get orientationStream {
  _orientCtrl ??= StreamController<OrientationData>.broadcast();
  return _orientCtrl!.stream;
}