From c3dbe4d4543dc9f270c421a4e0f2c799117dfcd0 Mon Sep 17 00:00:00 2001 From: Hayri Bakici Date: Thu, 18 Jul 2024 15:37:49 +0200 Subject: [PATCH] making `SpotifyClient` final --- lib/src/spotify_client.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/spotify_client.dart b/lib/src/spotify_client.dart index e6260e7..b742bd3 100644 --- a/lib/src/spotify_client.dart +++ b/lib/src/spotify_client.dart @@ -17,7 +17,7 @@ part of '../spotify.dart'; /// A custom HTTP client with logging capabilities. -class SpotifyClient with http.BaseClient { +final class SpotifyClient with http.BaseClient { final FutureOr _inner; bool _enableLogging = false;