Stats constructor

Stats({
  1. double? flagWeight,
  2. bool? gray,
  3. bool? hide,
  4. int? totalVotes,
})

Implementation

Stats({
  this.flagWeight,
  this.gray,
  this.hide,
  this.totalVotes,
});