getExistingTransactionIndexes method
Future<GetExistingTransactionIndexesResponse>
getExistingTransactionIndexes({
- CallOptions? options,
Returns a GetExistingTransactionIndexesResponse object for the existing transaction indexes.
options
is a CallOptions
object that can be used to set additional options for the RPC request.
Throws an Exception if an error occurs during the RPC request.
Implementation
Future<GetExistingTransactionIndexesResponse> getExistingTransactionIndexes({
CallOptions? options,
}) async {
final request = GetExistingTransactionIndexesRequest();
final GetExistingTransactionIndexesResponse response = await genusTransactionStub.getExistingTransactionIndexes(
request,
options: options,
);
return response;
}