Wallet constructor

const Wallet({
  1. required String asset,
  2. required String blockchain,
  3. required double balance,
  4. required String? network,
})

Wallet model.

Implementation

const Wallet({
  required this.asset,
  required this.blockchain,
  required this.balance,
  required this.network,
});