getStyle method
Implementation
TextStyle? getStyle(String key, StyleMapper? styleMapper) {
final name = attrs[key];
if (name == null || name.isEmpty) return null;
return styleMapper?[name];
}
TextStyle? getStyle(String key, StyleMapper? styleMapper) {
final name = attrs[key];
if (name == null || name.isEmpty) return null;
return styleMapper?[name];
}