Typography constructor

const Typography({
  1. TextStyle? header,
  2. TextStyle? subheader,
  3. TextStyle? title,
  4. TextStyle? subtitle,
  5. TextStyle? base,
  6. TextStyle? body,
  7. TextStyle? caption,
})

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

Implementation

const Typography({
  this.header,
  this.subheader,
  this.title,
  this.subtitle,
  this.base,
  this.body,
  this.caption,
});