copyWith method
Implementation
TerminalStyle copyWith({
double? fontSize,
double? height,
String? fontFamily,
List<String>? fontFamilyFallback,
}) {
return TerminalStyle(
fontSize: fontSize ?? this.fontSize,
height: height ?? this.height,
fontFamily: fontFamily ?? this.fontFamily,
fontFamilyFallback: fontFamilyFallback ?? this.fontFamilyFallback,
);
}