moveToBackground method

  1. @override
Future<void> moveToBackground()
override

Implementation

@override
Future<void> moveToBackground() async {
  try {
    await methodChannel.invokeMethod<String>('moveToBackground');
  } catch (e) {
    debugPrint('$e');
  }
  return;
}