DigitTabTypography constructor

const DigitTabTypography({
  1. required TextStyle normalBase,
  2. required TextStyle displayBase,
  3. Color? normal,
  4. Color? light,
})

Implementation

const DigitTabTypography({
  required TextStyle normalBase,
  required TextStyle displayBase,
  Color? normal,
  Color? light,
}) : super(
  normal: normal,
  light: light,
  displayBase: displayBase,
  normalBase: normalBase,
);