Wallet constructor

Wallet({
  1. String? address,
  2. Signer? signer,
  3. String? pgpPrivateKey,
})

Implementation

Wallet({
  String? address,
  this.signer,
  this.pgpPrivateKey,
}) {
  _address = address;
}