MessageReference constructor

MessageReference({
  1. String? messageId,
  2. String? channelId,
  3. required String guildId,
  4. bool? failIfNotExists,
})

Implementation

MessageReference({
  this.messageId,
  this.channelId,
  required this.guildId,
  this.failIfNotExists,
});