Unmoji constructor Null safety

const Unmoji(
  1. {Key? key,
  2. required String emoji,
  3. double? height,
  4. double? width,
  5. UnmojiFormat twemojiFormat = UnmojiFormat.webp,
  6. BoxFit? fit}
)

Implementation

const Unmoji({
  Key? key,
  required this.emoji,
  this.height,
  this.width,
  this.twemojiFormat = UnmojiFormat.webp,
  this.fit,
}) : super(key: key);