ApplicationParams constructor

ApplicationParams({
  1. String? approvalProgram,
  2. String? clearStateProgram,
  3. required List<TealKeyValue> globalState,
  4. String? creator,
  5. ApplicationStateSchema? globalStateSchema,
  6. ApplicationStateSchema? localStateSchema,
})

Implementation

ApplicationParams({
  this.approvalProgram,
  this.clearStateProgram,
  required this.globalState,
  this.creator,
  this.globalStateSchema,
  this.localStateSchema,
});