dropTempAuthKeys method

Future<Result<Boolean>> dropTempAuthKeys({
  1. required List<int> exceptAuthKeys,
})

Drop Temp Auth Keys.

ID: 8e48a188.

Implementation

Future<Result<Boolean>> dropTempAuthKeys({
  required List<int> exceptAuthKeys,
}) async {
  // Preparing the request.
  final request = AuthDropTempAuthKeys(
    exceptAuthKeys: exceptAuthKeys,
  );

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

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