MoviePreviewView constructor

const MoviePreviewView({
  1. Key? key,
  2. required String videoUrl,
  3. required FilterType filterType,
  4. required int filterProgress,
})

Implementation

const MoviePreviewView(
    {Key? key,
    required this.videoUrl,
    required this.filterType,
    required this.filterProgress})
    : super(key: key);