5 lines
151 B
Dart
5 lines
151 B
Dart
|
import 'package:http/http.dart';
|
||
|
|
||
|
BaseClient getCookieClient() => throw UnsupportedError(
|
||
|
'Cannot create a client without dart:html or dart:io.');
|