AlgorandException constructor

AlgorandException({
  1. int errorCode = 0,
  2. String message = '',
  3. int? statusCode,
  4. Object? cause,
})

Implementation

AlgorandException({
  this.errorCode = 0,
  String message = '',
  this.statusCode,
  this.cause,
}) : _message = message;