minimizeApp static method

void minimizeApp()

Minimize the app to the background.

Implementation

static void minimizeApp() {
  // This function only works on Android.
  if (!Platform.isAndroid) return;

  _methodChannel.invokeMethod('minimizeApp');
}