displayLarge method

Text displayLarge(
  1. BuildContext context
)

Set the Style to use displayLarge.

Implementation

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