Some values in a Theme object must be provided as MaterialStateProperty<T>, e.g. backgroundColor: MaterialStateProperty.all<Color>(Colors.white). How can the property of type T be accessed in a Flutter widget?
E.g. the following line produces an (obvious) error:
Container(color: Theme.of(context).elevatedButtonTheme.style?.backgroundColor)
Error: *The argument type 'MaterialStateProperty<Color?>?' can't be assigned to the parameter type 'Color'*