Larger constructor

Larger({
  1. required TextStyle style,
  2. required FontWeight regular,
  3. required Color onBackground,
  4. required Color secondary,
})

Implementation

Larger({
  required TextStyle style,
  required FontWeight regular,
  required Color onBackground,
  required Color secondary,
}) : regular = LargerRegular(
        style: style.copyWith(fontWeight: regular),
        onBackground: onBackground,
        secondary: secondary,
      );