BaseStyle constructor

BaseStyle({
  1. required Color color,
  2. required double fontSize,
  3. double? height,
  4. Color? activeColor,
  5. Color? backgroundActiveColor,
  6. Color? backgroundColor,
})

Implementation

BaseStyle({
  required this.color,
  required this.fontSize,
  this.height,
  this.activeColor,
  this.backgroundActiveColor,
  this.backgroundColor,
});