DraftModeStorageHttp constructor
Implementation
DraftModeStorageHttp({
required String baseUrl,
http.Client? client,
Map<String, String>? headers,
}) : _baseUrl = _normalizeBaseUrl(baseUrl),
_client = client ?? http.Client(),
_defaultHeaders = headers,
_ownsClient = client == null;