getCreatedApplicationsByAddress method

Future<List<Application>> getCreatedApplicationsByAddress(
  1. String address, {
  2. int? applicationId,
  3. bool? includeAll,
  4. int? perPage,
  5. CancelToken? cancelToken,
  6. ProgressCallback? onSendProgress,
  7. ProgressCallback? onReceiveProgress,
})

Lookup created applications information by a given account id.

Throws an AlgorandException if there is an HTTP error. Returns the assets.

Implementation

Future<List<Application>> getCreatedApplicationsByAddress(
  String address, {
  int? applicationId,
  bool? includeAll,
  int? perPage,
  CancelToken? cancelToken,
  ProgressCallback? onSendProgress,
  ProgressCallback? onReceiveProgress,
}) async {
  return _applicationsApi.getCreatedApplicationsByAddress(
    address,
    applicationId: applicationId,
    includeAll: includeAll,
    perPage: perPage,
    cancelToken: cancelToken,
    onSendProgress: onSendProgress,
    onReceiveProgress: onReceiveProgress,
  );
}