orientLandscape static method

Future<void> orientLandscape()

Change app orientation to landscape mode

Implemetation :-

await SystemShortcuts.orientLandscape ( );

Implementation

static Future<void> orientLandscape() async {
  await _channel.invokeMethod('orientLandscape');
}