FValue constructor

const FValue({
  1. required bool prepared,
  2. required bool completed,
  3. required bool audioRenderStart,
  4. required bool videoRenderStart,
  5. required FState state,
  6. required Size? size,
  7. required int rotate,
  8. required Duration duration,
  9. required bool fullScreen,
  10. required FException exception,
})

A constructor requires all value.

Implementation

const FValue({
  required this.prepared,
  required this.completed,
  required this.audioRenderStart,
  required this.videoRenderStart,
  required this.state,
  required this.size,
  required this.rotate,
  required this.duration,
  required this.fullScreen,
  required this.exception,
});