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