setWallpaper method
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.');
}
}