checkNeedMaxWidth method
Implementation
bool checkNeedMaxWidth(
String? text,
) {
// if (isNullOrEmpty(text)) return false;
// if (avgMaxLength == 0) return true;
// final length = text!.characters.length;
// if (length < avgMaxLength) {
// return false;
// }
return true;
}