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; } }