matchInfo static method
匹配信息
Implementation
static Future<DataResult> matchInfo() async {
var res = await BaseDao.fromBaseJson({}, Address.matchInfo());
if (res.result) {
var entity = TokenEntity.fromJson(res.data);
return DataResult(entity, true, time: res.time);
}
return res;
}