7 lines
281 B
Dart
7 lines
281 B
Dart
import 'package:http/http.dart' as http;
|
|
|
|
/// Fallback stub — should never be called; actual implementation is selected
|
|
/// via conditional imports in `plex_http_client.dart`.
|
|
http.Client createPlatformClient() =>
|
|
throw UnsupportedError('No platform HTTP client available');
|