home static method

Future<void> home()

Press home button programatically .

Implemetation :-

await SystemShortcuts.home ( );

Implementation

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