resetWallPapers method

Future<Result<Boolean>> resetWallPapers()

Reset Wall Papers.

ID: bb3b9804.

Implementation

Future<Result<Boolean>> resetWallPapers() async {
  // Preparing the request.
  final request = AccountResetWallPapers();

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<Boolean>();
}