checkQrCode method
检测二维码
type
类型(可选,默认为 3)
Implementation
Future<StringEntity?> checkQrCode({
required String key,
int type = 3,
}) async {
final data = {
'key': key,
'type': type,
};
return await BujuanMusicManager()
.post<StringEntity>(url: Api.checkQrCode, options: createOption(), data: data);
}