MyVideoPlayer2 constructor

const MyVideoPlayer2({
  1. Key? key,
  2. required String url,
  3. required bool isInFeed,
  4. required bool isEnableVideoTools,
  5. required AmityPost post,
})

Implementation

const MyVideoPlayer2(
    {Key? key,
    required this.url,
    required this.isInFeed,
    required this.isEnableVideoTools,
    required this.post})
    : super(key: key);