initialize method
Future<int>
initialize({
- required HaloVideoPlayerDataSource dataSource,
- bool autoPlay = false,
- bool looping = false,
- 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.');
}