buildMaterialHelperText method
Implementation
Widget? buildMaterialHelperText(BuildContext context) {
if (helper == null) return null;
final (inputTheme, style, theme) = resolveTheme(context);
return Text(helper!, style: inputTheme.helperStyle);
}