limitText property
String?
get
limitText
Implementation
String? get limitText {
if (maxCount != null) {
return "$textCount/$maxCount";
}
return null;
}
String? get limitText {
if (maxCount != null) {
return "$textCount/$maxCount";
}
return null;
}