FlutterFloatWindowView constructor

const FlutterFloatWindowView({
  1. Key? key,
  2. required String videoUrl,
  3. String title = "",
  4. String artist = "",
  5. String coverUrl = "",
  6. int position = 0,
  7. int duration = 0,
  8. double speed = 1.0,
})

Implementation

const FlutterFloatWindowView(
    {Key? key,
    required this.videoUrl,
    this.title = "",
    this.artist = "",
    this.coverUrl = "",
    this.position = 0,
    this.duration=0,
    this.speed=1.0})
    : super(key: key);