createSimpleTextAtMessage static method

dynamic createSimpleTextAtMessage(
  1. List<String> atUserList,
  2. String text
)

Implementation

static createSimpleTextAtMessage(List<String> atUserList, String text) {
  return {
    "elemType": 6,
    "type": "textAt",
    "textAtElem": {
      "text": text,
      "atUserList": atUserList,
    }
  };
}