Hi @vasili
In the update function in your custom widget class, I believe you can get the posted data by using the $_POST
variable like this:
$instance['title'] = $_POST['acf']['field_123456789abc'];
Where ‘field_123456789abc’ is the field key.
Hope this helps π