initialize method

Future<int> initialize({
  1. required HaloVideoPlayerDataSource dataSource,
  2. bool autoPlay = false,
  3. bool looping = false,
  4. double volume = 1.0,
})

Initialize a video player with the given data source

Implementation

Future<int> initialize({
  required HaloVideoPlayerDataSource dataSource,
  bool autoPlay = false,
  bool looping = false,
  double volume = 1.0,
}) {
  throw UnimplementedError('initialize() has not been implemented.');
}