getCurrentTime method
Returns the current playback time in seconds, or 0 if unavailable.
Implementation
@override
Future<int> getCurrentTime() => _withPlayerAsync<int>(
'getCurrentTime',
(p) => _doubleToSafeInt(p.currentTime()),
0,
);