bodyLarge method

Text bodyLarge(
  1. BuildContext context
)

Set the Style to use bodyLarge.

Implementation

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