init method
Implementation
init({required String cookiePath, bool debug = false}) async {
_debug = debug;
cookieJar = kIsWeb
? await MusicWebCookieJar.create()
: await MusicFileCookieJar.create(cookiePath: cookiePath);
_initDio();
}