displaySmall method

Text displaySmall(
  1. BuildContext context
)

Set the Style to use displaySmall.

Implementation

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