ActiveVote constructor

ActiveVote({
  1. required String voter,
  2. required int rshares,
  3. int? percent,
  4. int? reputation,
  5. String? time,
  6. int? weight,
})

Implementation

ActiveVote({
  required this.voter,
  required this.rshares,
  this.percent,
  this.reputation,
  this.time,
  this.weight,
});