FreezeEscrowAccount constructor

const FreezeEscrowAccount({
  1. required SolAddress candyGuard,
  2. required SolAddress candyMachine,
  3. required SolAddress frozenCount,
  4. BigInt? firstMintTime,
  5. required BigInt freezePeriod,
  6. required SolAddress destination,
  7. required SolAddress authority,
})

Implementation

const FreezeEscrowAccount(
    {required this.candyGuard,
    required this.candyMachine,
    required this.frozenCount,
    this.firstMintTime,
    required this.freezePeriod,
    required this.destination,
    required this.authority});