Title constructor

Title({
  1. String? fontFamily,
  2. int? fontWeight,
  3. String? color,
  4. String? activeColor,
  5. String? hoverColor,
  6. int? fontSize,
})

Implementation

Title({
  String? fontFamily,
  int? fontWeight,
  String? color,
  String? activeColor,
  String? hoverColor,
  int? fontSize,
}) {
  _fontFamily = fontFamily;
  _fontWeight = fontWeight;
  _color = color;
  _activeColor = activeColor;
  _hoverColor = hoverColor;
  _fontSize = fontSize;
}