getTextStyle method
Implementation
@override
TextStyle? getTextStyle(BuildContext context) {
final style = Theme.of(context).textTheme.labelLarge;
final fontSize = Typography.maybeOf(context)?.labelLarge;
return fontSize != null ? style?.copyWith(fontSize: fontSize) : style;
}