getAllSecureValues method

Future<Result<Vector<SecureValueBase>>> getAllSecureValues()

Get All Secure Values.

ID: b288bc7d.

Implementation

Future<Result<Vector<SecureValueBase>>> getAllSecureValues() async {
  // Preparing the request.
  final request = AccountGetAllSecureValues();

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

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