getMaxWidth method
Implementation
double getMaxWidth(Characters? text, int avgLength, double? maxWidth) {
if (isNullOrEmpty(text)) return 0;
return messureText(text, width: maxWidth);
}
double getMaxWidth(Characters? text, int avgLength, double? maxWidth) {
if (isNullOrEmpty(text)) return 0;
return messureText(text, width: maxWidth);
}