homeScreen static method

Future<String> homeScreen()

This function is setting the image to the home screen as a wallpaper.

Implementation

static Future<String> homeScreen() async {
  final String resultvar =
      await _channel.invokeMethod('HomeScreen', 'myimage.jpeg');
  return resultvar;
}