Wallet constructor

const Wallet({
  1. required NetworkInfo networkInfo,
  2. required Uint8List address,
  3. required Uint8List privateKey,
  4. required Uint8List publicKey,
})

Implementation

const Wallet({
  required this.networkInfo,
  required this.address,
  required this.privateKey,
  required this.publicKey,
});