fundations method

Map<Type, WildnessBase> fundations({
  1. Brightness? brightness,
})

Convert the _fundations passed to wildnessProperties.new to the stored fundations map, where each entry's key consists of the kind type, theme resolved.

Implementation

Map<Type, WildnessBase<dynamic>> fundations({
  Brightness? brightness,
}) {
  return _configurationToMap(
    brightness: brightness,
    configuration: _fundations,
  );
}