timeShift property

  1. @override
Future<double> timeShift

Returns the the current time shift value of the player in seconds. It describes the offset from the live edge. The returned value is within maxTimeShift (which is a negative value) and 0 (the live edge). Only applicable for live streams.

Implementation

@override
Future<double> get timeShift async =>
    _invokeMethod<double>(Methods.getTimeShift);