RespData<PlasoObject> constructor
RespData<PlasoObject> ({})
Implementation
RespData({required this.code, this.res, int? expireDelta, this.msg, this.raw, this.expire, this.reqId}) {
if (expireDelta != null) {
expire = expireDelta * 1000 + DateTime.now().millisecondsSinceEpoch;
} else if (expire != null) {
expire = expire! * 1000;
}
}