getCurrentInfo method

LuckInfoModel? getCurrentInfo(
  1. bool isNor
)

Implementation

LuckInfoModel? getCurrentInfo(bool isNor) {
  LuckInfoModel? model = isNor ?  normalLuckyNumInfo : expensiveLuckyNumInfo;
  model!.isNorTab = isNor;
  return model;
}