TextTheme constructor

const TextTheme({
  1. Style title = const Style(bold: true),
  2. Style body = Style.none,
  3. Style caption = const Style(dim: true),
  4. Style code = Style.none,
})

Implementation

const TextTheme({
  this.title = const Style(bold: true),
  this.body = Style.none,
  this.caption = const Style(dim: true),
  this.code = Style.none,
});