bodySmall method

Text bodySmall(
  1. BuildContext context
)

Set the Style to use bodySmall.

Implementation

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