init method

dynamic init({
  1. required String cookiePath,
  2. bool debug = false,
})

Implementation

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