LuckInfoModel constructor

LuckInfoModel({
  1. int lotteryNum = 0,
  2. int currentNum = 0,
  3. int luckyBurstTime = 0,
  4. int maxNum = 0,
  5. bool luckyBurst = false,
})

Implementation

LuckInfoModel({
  this.lotteryNum = 0,
  this.currentNum = 0,
  this.luckyBurstTime = 0,
  this.maxNum = 0,
  this.luckyBurst = false,
});