typography property

KiteTypography get typography

Implementation

KiteTypography get typography {
  final typography = Theme.of(this).extension<KiteTypography>();

  assert(
    typography != null,
    'AppTypography is not registered in ThemeData.extensions.',
  );

  return typography!;
}