getApplicationLogsById method

Future<ApplicationLogsResponse> getApplicationLogsById(
  1. int applicationId, {
  2. int? limit,
  3. int? maxRound,
  4. int? minRound,
  5. String? next,
  6. String? senderAddress,
  7. String? transactionId,
  8. CancelToken? cancelToken,
  9. ProgressCallback? onSendProgress,
  10. ProgressCallback? onReceiveProgress,
})

Lookup application information by a given id.

Throws an AlgorandException if there is an HTTP error. Returns the application information for the given application id.

Implementation

Future<ApplicationLogsResponse> getApplicationLogsById(
  int applicationId, {
  int? limit,
  int? maxRound,
  int? minRound,
  String? next,
  String? senderAddress,
  String? transactionId,
  CancelToken? cancelToken,
  ProgressCallback? onSendProgress,
  ProgressCallback? onReceiveProgress,
}) async {
  return _applicationsApi.getApplicationLogsById(
    applicationId,
    limit: limit,
    maxRound: maxRound,
    minRound: minRound,
    next: next,
    senderAddress: senderAddress,
    transactionId: transactionId,
    cancelToken: cancelToken,
    onSendProgress: onSendProgress,
    onReceiveProgress: onReceiveProgress,
  );
}