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