AppVideoView constructor

AppVideoView({
  1. Key? key,
  2. String? mediaUrl,
  3. bool? onFullPage,
  4. bool? isLocalFile,
  5. required String mainColor,
  6. required String baseUrl,
  7. required String urlWithoutHttp,
})

Implementation

AppVideoView(
    {Key? key,
    this.mediaUrl,
    this.onFullPage,
    this.isLocalFile,
    required this.mainColor,
    required this.baseUrl,
    required this.urlWithoutHttp})
    : super(key: key);