Typography constructor

const Typography({
  1. required Widget child,
  2. TypographyData data = const TypographyData(),
  3. List<TypographyBreakpoint> breakpoints = const <TypographyBreakpoint>[],
  4. Key? key,
})

Implementation

const Typography({
  required this.child,
  this.data = const TypographyData(),
  this.breakpoints = const <TypographyBreakpoint>[],
  super.key,
});