SimplePlayerSettings constructor

SimplePlayerSettings({
  1. required String type,
  2. required String path,
  3. required String label,
  4. required double aspectRatio,
  5. required bool autoPlay,
  6. required bool loopMode,
  7. required bool forceAspectRatio,
  8. required Color colorAccent,
})

Implementation

SimplePlayerSettings({
  required this.type,
  required this.path,
  required this.label,
  required this.aspectRatio,
  required this.autoPlay,
  required this.loopMode,
  required this.forceAspectRatio,
  required this.colorAccent,
});