headingSmall method
Set the Style to use headlineSmall
.
Implementation
Text headingSmall(BuildContext context) {
if (style == null) {
return copyWith(style: Theme.of(context).textTheme.headlineSmall);
}
return this.setStyle(Theme.of(context).textTheme.headlineSmall);
}