bodyText method

TextStyle? bodyText(
  1. BuildContext context
)

body text style

Implementation

TextStyle? bodyText(BuildContext context) {
  return Theme.of(context)
      .textTheme
      .bodyText1!
      .copyWith(fontFamily: fontFamily);
}