DigitMobileTypography constructor

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

Implementation

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