PartialText constructor

const PartialText({
  1. Map<String, dynamic>? metadata,
  2. PreviewData? previewData,
  3. Message? repliedMessage,
  4. required String text,
})

Creates a partial text message with all variables text can have. Use TextMessage to create a full message. You can use TextMessage.fromPartial constructor to create a full message from a partial one.

Implementation

const PartialText({
  this.metadata,
  this.previewData,
  this.repliedMessage,
  required this.text,
});