DigitTypography constructor

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

Implementation

const DigitTypography({
  required TextStyle normalBase,
  required TextStyle displayBase,
  Color? normal,
  Color? light,
})  : _normalBase = normalBase,
      _displayBase = displayBase,
      _textColorLight = light,
      _textColorNormal = normal;