killApp static method

Future<Null> killApp()

Kill the current application process and exit (Only supports Android)

Implementation

static Future<Null> killApp() async {
  await _channel.invokeMethod('killApp');
}