FontName constructor
Implementation
FontName({
/// The font ID.
required String fontId,
/// The display name of the font.
required String displayName,
}) : _wrapped = $js.FontName(
fontId: fontId,
displayName: displayName,
);