TwemojiText constructor

const TwemojiText({
  1. Key? key,
  2. required String text,
  3. TextStyle? style,
  4. int? maxLines,
  5. double emojiFontMultiplier = 1.0,
  6. TwemojiFormat twemojiFormat = TwemojiFormat.svg,
})

Implementation

const TwemojiText({
  Key? key,
  required this.text,
  this.style,
  this.maxLines,
  this.emojiFontMultiplier = 1.0,
  this.twemojiFormat = TwemojiFormat.svg,
}) : super(key: key);