buildMaterialHelperOrErrorText method
Implementation
Widget? buildMaterialHelperOrErrorText(BuildContext context, String? error) {
if (error != null) {
return buildMaterialErrorText(context, error);
}
return buildMaterialHelperText(context);
}