topicUse static method
Implementation
static Future<DataResult> topicUse(String? topicId) async {
Map other = {'topicId': topicId};
var res = await BaseDao.fromBaseEncrypt(other, Address.topicUse());
if (res.result) {
var entity = TokenEntity.fromJson(res.data);
return DataResult(entity, true);
}
return res;
}