bodyMedium method

Text bodyMedium(
  1. BuildContext context
)

Set the Style to use bodyMedium.

Implementation

Text bodyMedium(BuildContext context) {
  if (style == null) {
    return copyWith(style: Theme.of(context).textTheme.bodyMedium);
  }
  return this.setStyle(Theme.of(context).textTheme.bodyMedium);
}