channel_stub.dart 392 B

1234567891011121314151617
  1. import 'dart:typed_data';
  2. import 'package:fis_vid/async_vid/vid_data.dart';
  3. import 'channel.dart';
  4. class VidDataChannelImpl extends VidDataChannel {
  5. VidDataChannelImpl(String url) : super(url);
  6. static void receiveChunk(String id, Uint8List chunk) {}
  7. @override
  8. Future<AsyncVidImageDataBase> buildSource() {
  9. // TODO: implement buildSource
  10. throw UnimplementedError();
  11. }
  12. }