mergeFontWeight static method
Map<String, FontWeight>
mergeFontWeight(
- Map<
String, FontWeight> defaults, - Map<
String, FontWeight> user
Implementation
static Map<String, FontWeight> mergeFontWeight(
Map<String, FontWeight> defaults, Map<String, FontWeight> user) {
return {...defaults, ...user}; // Properly merges user-defined values
}