toJson method
Implementation
Map<String, dynamic> toJson() => {
"sessionExists": sessionExists == null ? null : sessionExists,
"accessTimeLeft": accessTimeLeft == null ? null : accessTimeLeft,
"freeAccess": freeAccess == null ? null : freeAccess,
"isAdfreePurchased": isAdfreePurchased == null ? null : isAdfreePurchased,
"payload": payload == null ? null : payload.toJson(),
"consumptionId": consumptionId == null ? null : consumptionId,
"signature": signature == null ? null : signature,
"downloadExists": downloadExists == null ? null : downloadExists,
};