call method
T
call({})
Implementation
T call({
String? fontFamily,
List<String>? fontFamilyFallback,
double? fontSize,
FontWeight? fontWeight,
FontStyle? fontStyle,
double? height,
double? leading,
bool? forceStrutHeight,
}) {
return only(
fontFamily: fontFamily,
fontFamilyFallback: fontFamilyFallback,
fontSize: fontSize,
fontWeight: fontWeight,
fontStyle: fontStyle,
height: height,
leading: leading,
forceStrutHeight: forceStrutHeight,
);
}