getChangeGroupIntroductionDisplayString static method
String
getChangeGroupIntroductionDisplayString(
- ChangeGroupIntroductionSystemMessage systemMessage,
- BuildContext context
Implementation
static String getChangeGroupIntroductionDisplayString(
ChangeGroupIntroductionSystemMessage systemMessage, BuildContext context) {
AtomicLocalizations localizations = AtomicLocalizations.of(context);
String operator = systemMessage.groupIntroductionOperator;
String groupIntroduction = systemMessage.groupIntroduction;
if (groupIntroduction.isNotEmpty) {
return '$operator ${localizations.groupIntroChangedTo} $groupIntroduction';
} else {
return '$operator ${localizations.groupIntroDeleted}';
}
}