DeListForSaleOperation constructor

DeListForSaleOperation({
  1. required AccountNumber accountSigner,
  2. required AccountNumber targetSigner,
})

Creates a new List account for sale operation

Implementation

DeListForSaleOperation(
    {required this.accountSigner, required this.targetSigner})
    : super() {
  this.price = Currency('0');
  this.accountToPay = AccountNumber.fromInt(0);
  this.newPublicKey = PublicKey.empty();
  this.lockedUntilBlock = 0;
}