popupList static method

Future<DataResult> popupList()

pop列表

Implementation

static Future<DataResult> popupList() async {
  var res = await BaseDao.fromBaseEncrypt({}, Address.popupList());
  if (res.result) {
    var entity = PopupEntity.fromJson(res.data);
    return DataResult(entity, true);
  }
  return res;
}