resetAuthorization method
Reset Authorization.
ID: df77f3bc.
Implementation
Future<Result<Boolean>> resetAuthorization({required int hash}) async {
// Preparing the request.
final request = AccountResetAuthorization(hash: hash);
// Invoke and wait for response.
final response = await _c.invoke(request);
// Return the result.
return response._to<Boolean>();
}