StorageClient constructor
StorageClient({})
Creates a new StorageClient instance
Implementation
StorageClient({
required this.baseUrl,
required this.tokenStorage,
http.Client? httpClient,
this.timeout = const Duration(seconds: 30),
Map<String, String>? headers,
}) : _client = httpClient ?? http.Client(),
_customHeaders = headers ?? const {};