StreamMessagePreviewText constructor

const StreamMessagePreviewText({
  1. Key? key,
  2. required Message message,
  3. String? language,
  4. TextStyle? textStyle,
})

Creates a new instance of StreamMessagePreviewText.

Implementation

const StreamMessagePreviewText({
  super.key,
  required this.message,
  this.language,
  this.textStyle,
});