components method
Convert the _components passed to ElementaryProperties.new
to the stored Elementary.components map, where each entry's key consists of the kind type, theme resolved.
Implementation
Map<Type, ElementaryBase<dynamic>> components({
Brightness? brightness,
}) {
return _configurationToMap(
brightness: brightness,
configuration: _components,
);
}