put method
Put a new value for the given key
Implementation
@override
FlyFontToken put(String key, List<String> value) {
switch (key) {
case 'sans':
return copyWith(sans: value);
case 'serif':
return copyWith(serif: value);
case 'mono':
return copyWith(mono: value);
default:
final newExtras = Map<String, List<String>>.from(extras);
newExtras[key] = value;
return copyWith(extras: newExtras);
}
}