Change record status: 
Project: 
Introduced in branch: 
9.3.x
Introduced in version: 
9.3.0
Description: 

Drupal core was providing a 'block_theme' key in form state for block plugins. This was unreliable, and resulted in bugs when it was used, so it is no longer available in form state.

Before

$theme = $form_state->get('block_theme');

After

$theme = \Drupal::config('system.theme')->get('default');
Impacts: 
Module developers