moveToBack_methodChannel method

Future<String> moveToBack_methodChannel()

Implementation

Future<String> moveToBack_methodChannel() async {
  final result = await methodChannel.invokeMethod<String>("moveToBack");
  if (result == null) return "return null wrong";
  return result.toString();
}