getMentionsWeb method
Implementation
String getMentionsWeb() {
var mentionsString = '[';
for (var e in mentionsWeb!) {
mentionsString = "$mentionsString'$e'${e != mentionsWeb!.last ? ', ' : ''}";
}
return '$mentionsString]';
}
String getMentionsWeb() {
var mentionsString = '[';
for (var e in mentionsWeb!) {
mentionsString = "$mentionsString'$e'${e != mentionsWeb!.last ? ', ' : ''}";
}
return '$mentionsString]';
}