Blame view

lib/common/request/dao/request_dao.dart 220 Bytes
15987941   liangchengyou   feat:兑换码接口+本地密码加密
1
2
3
4
5
6
7
8
9
  import '../request_client.dart';
  
  class RequestDao {
    ///视频跟读提交结果
    static Future exchange(code) async {
      var data = await requestClient.post(Apis.exchange,data: {'code':code});
      return data;
    }
  }