FontExpression constructor
FontExpression(})
Implementation
FontExpression(SourceSpan? span,
{Object? /* LengthTerm | num */ size,
List<String>? family,
int? weight,
String? style,
String? variant,
LineHeight? lineHeight})
: font = Font(
size: (size is LengthTerm ? size.value : size) as num?,
family: family,
weight: weight,
style: style,
variant: variant,
lineHeight: lineHeight),
super(DartStyleExpression.fontStyle, span);