canLotteryPointsBeClaimed property

bool? canLotteryPointsBeClaimed

brainly scraper

Implementation

bool? get canLotteryPointsBeClaimed {
  try {
    if (rawData["canLotteryPointsBeClaimed"] is bool == false) {
      return null;
    }
    return rawData["canLotteryPointsBeClaimed"] as bool;
  } catch (e) {
    return null;
  }
}