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