frame_view.dart 431 B

123456789101112131415161718192021
  1. import 'dart:typed_data';
  2. import 'package:fis_vid/processors/base.dart';
  3. import 'package:flutter/cupertino.dart';
  4. abstract class VidFrameViewInterface extends Widget {
  5. const VidFrameViewInterface(
  6. this.data, {
  7. Key? key,
  8. this.width,
  9. this.height,
  10. this.processors,
  11. }) : super(key: key);
  12. final Uint8List data;
  13. final double? width;
  14. final double? height;
  15. final List<VidFrameProcessor>? processors;
  16. }