LargeDark constructor

LargeDark({
  1. String? color,
  2. String? fontFamily,
  3. int? fontWeight,
  4. int? fontSize,
  5. int? opacity,
})

Implementation

LargeDark({
  String? color,
  String? fontFamily,
  int? fontWeight,
  int? fontSize,
  int? opacity,
}) {
  _color = color;
  _fontFamily = fontFamily;
  _fontWeight = fontWeight;
  _fontSize = fontSize;
  _opacity = opacity;
}