videoLoadedFraction property

  1. @override
Future<double> get videoLoadedFraction

Returns a number between 0 and 1 that specifies the percentage of the video that the player shows as buffered.

Implementation

@override
Future<double> get videoLoadedFraction async {
  final loadedFraction = await _runWithResult('getVideoLoadedFraction');

  return double.tryParse(loadedFraction) ?? 0;
}