getPlaceholderTextStyle method
Implementation
TextStyle getPlaceholderTextStyle(BuildContext context) {
final theme = Theme.of(context);
return theme.textTheme.bodyLarge!.copyWith(
fontWeight: kFastFontWeightLight,
color: theme.hintColor,
);
}