labelComponentFontSizeSC<TOptionType, TValue> method
Implementation
double labelComponentFontSizeSC<TOptionType, TValue>(
String selectedOption,
Map<String, double> branches, [
double? defaultValue,
]) {
if (!branches.containsKey(selectedOption)) {
return defaultValue!;
}
return branches[selectedOption]!;
}