titleLarge method

Text titleLarge(
  1. BuildContext context
)

Set the Style to use titleLarge.

Implementation

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