getMentionsWeb method

String getMentionsWeb()

Implementation

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