UnmojiText constructor Null safety

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

Implementation

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