seek method
If relative
is set to false sets the video position to an interval
from the start.
If relative
is set to true sets the video position to an interval
from the current position.
Implementation
@override
Future<void> seek(bool relative, double interval, {required int id}) {
final Map<String, dynamic> args = {
'relative': relative,
'interval': interval
};
return channel(id)!.invokeMethod<void>('chromeCast#seek', args);
}