Message constructor

const Message({
  1. String? text,
  2. List<Emote>? emotes,
})

Implementation

const factory Message({
  String? text,
  List<Emote>? emotes,
}) = _Message;