Account constructor

Account(
  1. String publicAddress,
  2. String? name,
  3. String? url,
  4. List<String>? icons,
  5. String? description,
  6. String? mnemonic,
  7. int? chainId,
  8. String? walletType,
)

Implementation

Account(this.publicAddress, this.name, this.url, this.icons, this.description,
    this.mnemonic, this.chainId, this.walletType);