getTypingUser method
Implementation
String getTypingUser(ProfileDetails profile, bool? isGroup) {
if (isGroup.checkNull()) {
return "${profile.getName().checkNull()} ${getTranslated("typingIndicator")}";
} else {
return getTranslated("typingIndicator");
}
}