updateTextStyle method
Update text style token
Implementation
void updateTextStyle(
FlyTextStyleToken Function(FlyTextStyleToken current) updater,
) {
update((data) => data.copyWith(textStyle: updater(data.textStyle)));
}
Update text style token
void updateTextStyle(
FlyTextStyleToken Function(FlyTextStyleToken current) updater,
) {
update((data) => data.copyWith(textStyle: updater(data.textStyle)));
}