HeadingBaseStyle constructor Null safety
Implementation
HeadingBaseStyle(
{String? color, Dark? dDark, String? fontWeight, String? lineHeight}) {
if (color != null) {
_color = color;
}
if (dDark != null) {
_dDark = dDark;
}
if (fontWeight != null) {
_fontWeight = fontWeight;
}
if (lineHeight != null) {
_lineHeight = lineHeight;
}
}