setWallpaper method

Future<String?> setWallpaper(
  1. dynamic path,
  2. dynamic type
)

Implementation

Future<String?> setWallpaper(path, type) {
  if (!path) {
    throw UnimplementedError('path must exist.');
  } else if (!type) {
    throw UnimplementedError('type must exist.');
  } else {
    throw UnimplementedError('setWallpaper() has not been implemented.');
  }
}