updateFontWeight method
Update font weight token
Implementation
void updateFontWeight(
FlyFontWeightToken Function(FlyFontWeightToken current) updater,
) {
update((data) => data.copyWith(fontWeight: updater(data.fontWeight)));
}
Update font weight token
void updateFontWeight(
FlyFontWeightToken Function(FlyFontWeightToken current) updater,
) {
update((data) => data.copyWith(fontWeight: updater(data.fontWeight)));
}