currentPosition method

Future<double?> currentPosition()

Retrieves the current playback position.

Returns null if not implemented or an error occurs.

Implementation

Future<double?> currentPosition() async {
  throw UnimplementedError('currentPosition failed.');
}