onDeviceOrientationChanged method

  1. @override
Stream<DeviceOrientationChangedEvent> onDeviceOrientationChanged()

The ui orientation changed.

Implementations for this:

  • Should support all 4 orientations.

Implementation

@override
Stream<DeviceOrientationChangedEvent> onDeviceOrientationChanged() {
  return _deviceEventStreamController.stream
      .whereType<DeviceOrientationChangedEvent>();
}