extraPages property

int extraPages

Get the number of additional pages allocated to the application's approval and clear state programs. Each ExtraProgramPages is 2048 bytes.

Implementation

int get extraPages => _extraPages;
void extraPages=(int value)

Sets the number of additional pages allocated to the application's approval and clear state programs. Each ExtraProgramPages is 2048 bytes.

Implementation

set extraPages(int value) {
  if (value < 0 || value > 3) {
    throw AlgorandException(
      message: 'extraPages must be an integer between 0 and 3 inclusive',
    );
  }

  _extraPages = value;
}