getApplicationById method

Future<ApplicationResponse> getApplicationById(
  1. int applicationId, {
  2. bool? includeAll,
  3. CancelToken? cancelToken,
  4. ProgressCallback? onSendProgress,
  5. 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<ApplicationResponse> getApplicationById(
  int applicationId, {
  bool? includeAll,
  CancelToken? cancelToken,
  ProgressCallback? onSendProgress,
  ProgressCallback? onReceiveProgress,
}) async {
  return _applicationsApi.getApplicationById(
    applicationId,
    includeAll: includeAll,
    cancelToken: cancelToken,
    onSendProgress: onSendProgress,
    onReceiveProgress: onReceiveProgress,
  );
}