Typography.raw constructor

const Typography.raw({
  1. TextStyle? display,
  2. TextStyle? titleLarge,
  3. TextStyle? title,
  4. TextStyle? subtitle,
  5. TextStyle? bodyLarge,
  6. TextStyle? bodyStrong,
  7. TextStyle? body,
  8. TextStyle? caption,
})

Creates a new Typography. To create the default typography, use Typography.defaultTypography

Implementation

const Typography.raw({
  this.display,
  this.titleLarge,
  this.title,
  this.subtitle,
  this.bodyLarge,
  this.bodyStrong,
  this.body,
  this.caption,
});