Reward constructor

const Reward({
  1. String? walletAddress,
  2. List<Coin> rewardFromMiningPool = const [],
  3. List<Coin> rewardFromTrafficPool = const [],
})

Implementation

const Reward({
  this.walletAddress,
  this.rewardFromMiningPool = const [],
  this.rewardFromTrafficPool = const [],
});