1234567891011121314151617 |
- import 'dart:typed_data';
- import 'package:fis_vid/async_vid/vid_data.dart';
- import 'channel.dart';
- class VidDataChannelImpl extends VidDataChannel {
- VidDataChannelImpl(String url) : super(url);
- static void receiveChunk(String id, Uint8List chunk) {}
- @override
- Future<AsyncVidImageDataBase> buildSource() {
- // TODO: implement buildSource
- throw UnimplementedError();
- }
- }
|