applicationId property

int applicationId
inherited

Get the id of the application being interacted with, or 0 if creating a new application.

Implementation

int get applicationId => _applicationId;
  1. @override
void applicationId=(int value)
override

Implementation

@override
set applicationId(int value) {
  if (value != 0) {
    throw AlgorandException(
      message:
          // ignore: lines_longer_than_80_chars
          'Application ID must be zero, do not set this for application create.',
    );
  }
  super.applicationId = value;
}