isDeviceOrientationLocked method

  1. @override
Future<bool> isDeviceOrientationLocked()
override

Implementation

@override
Future<bool> isDeviceOrientationLocked() async {
  final bool? value =
      await methodChannel.invokeMethod<bool>('isDeviceOrientationLocked');
  return value ?? false;
}