seek method
Seeks to the given index and position.
Implementation
@override
Future<SeekResponse> seek(SeekRequest request) async {
  return SeekResponse.fromMap((await _channel
      .invokeMethod<Map<dynamic, dynamic>>('seek', request.toMap()))!);
}