PartialCustom constructor

const PartialCustom({
  1. Map<String, dynamic>? metadata,
  2. Message? repliedMessage,
})

Creates a partial custom message with metadata variable. Use CustomMessage to create a full message. You can use CustomMessage.fromPartial constructor to create a full message from a partial one.

Implementation

const PartialCustom({
  this.metadata,
  this.repliedMessage,
});