From 238c065f7eb3ada4fce9e7bdd9fd834d6687be18 Mon Sep 17 00:00:00 2001 From: Hayri Bakici Date: Sat, 6 Jul 2024 16:42:51 +0200 Subject: [PATCH] removes async --- lib/src/spotify_base.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/spotify_base.dart b/lib/src/spotify_base.dart index 0cb3cfa..1ba5dc9 100644 --- a/lib/src/spotify_base.dart +++ b/lib/src/spotify_base.dart @@ -181,10 +181,10 @@ abstract class SpotifyApiBase { } /// [enable]s logging of the requests and responses on the debug console. - /// Use [loggingDetail] to control how much should be logged. Default's set + /// Use [loggingDetail] to control how much should be logged. Default's set /// to [LoggingDetail.simple]. void enableDebugMode(bool enable, - [LoggingDetail loggingDetail = LoggingDetail.simple]) async { + [LoggingDetail loggingDetail = LoggingDetail.simple]) { _client.enableLogging = enable; _client.logginDetail = loggingDetail; }