Wallet constructor

Wallet({
  1. required String uuid,
  2. required String chainName,
  3. required String publicAddress,
})

Implementation

Wallet(
    {required this.uuid,
    required this.chainName,
    required this.publicAddress});