Account constructor

Account({
  1. String? accountIndex,
  2. String? balance,
  3. String? bjj,
  4. String? hezEthereumAddress,
  5. int? itemId,
  6. int? nonce,
  7. Token? token,
})

Implementation

Account(
    {this.accountIndex,
    this.balance,
    this.bjj,
    this.hezEthereumAddress,
    this.itemId,
    this.nonce,
    this.token});