defaultEmojiTextStyle function

TextStyle? defaultEmojiTextStyle()

Emoji text style applied when the caller does not supply one.

Returns null off the web so the platform's color emoji font is used as-is.

Implementation

TextStyle? defaultEmojiTextStyle() =>
    kIsWeb ? const TextStyle(fontFamily: kBundledEmojiFontFamily) : null;