renderUnicode function

String renderUnicode(
  1. String text,
  2. UnicodeFont font
)

Renders the given text in the specified font.

Implementation

String renderUnicode(
  String text,
  UnicodeFont font,
) {
  return UnicodeFontConverter.encode(text, font);
}