TextMessageNode constructor

TextMessageNode({
  1. required String content,
  2. List<String>? atUserList,
  3. bool atAll = false,
})

Implementation

TextMessageNode({
  required this.content,
  List<String>? atUserList,
  bool atAll: false,
})  : this._atUserList = atUserList,
      this._atAll = atAll,
      super(MessageElemTypeEnum.Text);