SimplePlayerState constructor

SimplePlayerState({
  1. required double? currentSeconds,
  2. required double? totalSeconds,
  3. required double? speed,
  4. required String? showTime,
  5. required String? label,
  6. required bool? autoPlay,
  7. required bool? loopMode,
  8. required bool? wasPlaying,
  9. required bool? confortMode,
})

Implementation

SimplePlayerState({
  required this.currentSeconds,
  required this.totalSeconds,
  required this.speed,
  required this.showTime,
  required this.label,
  required this.autoPlay,
  required this.loopMode,
  required this.wasPlaying,
  required this.confortMode,
});