toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = <String, dynamic>{};
data['cacheKey'] = cacheKey;
data['cacheValue'] = cacheValue;
data['expireTime'] = expireTime;
data['updateTime'] = updateTime;
return data;
}