Frame constructor

const Frame({
  1. required Uint8List data,
  2. required double duration,
  3. required int width,
  4. required int height,
})

Implementation

const Frame({
  required this.data,
  required this.duration,
  required this.width,
  required this.height,
});