mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-03-25 09:48:10 +00:00
7 lines
201 B
Dart
7 lines
201 B
Dart
import 'package:http/http.dart';
|
|
|
|
Future<ByteStream> getStream(Request request) async {
|
|
final client = Client();
|
|
StreamedResponse response = await client.send(request);
|
|
return response.stream;
|
|
}
|