PascalAccount constructor

PascalAccount({
  1. AccountNumber? account,
  2. PublicKey? encPubkey,
  3. Currency? balance,
  4. int? nOperation,
  5. int? updatedBlock,
  6. AccountState? state,
  7. int? type,
  8. int? lockedUntilBlock,
  9. Currency? price,
  10. AccountNumber? sellerAccount,
  11. bool? privateSale,
  12. PublicKey? newEncPubkey,
  13. bool isBorrowed = false,
  14. bool isFreepasa = false,
})

Implementation

PascalAccount(
    {this.account,
    this.encPubkey,
    this.balance,
    this.nOperation,
    this.updatedBlock,
    this.state,
    this.type,
    this.lockedUntilBlock,
    this.price,
    this.sellerAccount,
    this.privateSale,
    this.newEncPubkey,
    this.isBorrowed = false,
    this.isFreepasa = false});