buildMaterialHelperText method

Widget? buildMaterialHelperText(
  1. BuildContext context
)

Implementation

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