logout method

Future<BoolEntity?> logout()

退出登录

Implementation

Future<BoolEntity?> logout() async {
  return await BujuanMusicManager()
      .post<BoolEntity>(url: Api.logout, options: createOption(), data: {});
}