AccountLimit constructor

AccountLimit({
  1. int? codeSizeUnzipped,
  2. int? codeSizeZipped,
  3. int? concurrentExecutions,
  4. int? totalCodeSize,
  5. int? unreservedConcurrentExecutions,
})

Implementation

AccountLimit({
  this.codeSizeUnzipped,
  this.codeSizeZipped,
  this.concurrentExecutions,
  this.totalCodeSize,
  this.unreservedConcurrentExecutions,
});