mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
23 lines
673 B
Dart
23 lines
673 B
Dart
import 'package:PiliPlus/http/api.dart';
|
|
import 'package:PiliPlus/http/init.dart';
|
|
import 'package:PiliPlus/http/loading_state.dart';
|
|
import 'package:PiliPlus/models_new/match/match_info/contest.dart';
|
|
import 'package:PiliPlus/models_new/match/match_info/data.dart';
|
|
|
|
class MatchHttp {
|
|
static Future<LoadingState<MatchContest?>> matchInfo(dynamic cid) async {
|
|
var res = await Request().get(
|
|
Api.matchInfo,
|
|
queryParameters: {
|
|
'cid': cid,
|
|
'platform': 2,
|
|
},
|
|
);
|
|
if (res.data['code'] == 0) {
|
|
return Success(MatchInfoData.fromJson(res.data['data']).contest);
|
|
} else {
|
|
return Error(res.data['message']);
|
|
}
|
|
}
|
|
}
|