Wallet constructor

Wallet({
  1. String? privateKey,
  2. String? address,
})

Implementation

Wallet({
  this.privateKey,
  this.address,
});