labelLarge method

Text labelLarge(
  1. BuildContext context
)

Set the Style to use labelLarge.

Implementation

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