ThemeData constructor

const ThemeData({
  1. TextStyle defaultTextStyle = const TextStyle(fontSize: 11, color: '212121'),
  2. String? fontName,
  3. TextStyle? paragraphStyle,
  4. TextStyle? header0,
  5. TextStyle? header1,
  6. TextStyle? header2,
  7. TextStyle? header3,
  8. TextStyle? header4,
  9. TextStyle? header5,
  10. TextStyle tableHeader = const TextStyle(color: 'FFFFFF', fontWeight: FontWeight.bold, fontSize: 10),
  11. TextStyle tableCell = const TextStyle(fontSize: 10),
  12. TextStyle? bulletStyle,
})

ThemeData API.

Implementation

const ThemeData({
  this.defaultTextStyle = const TextStyle(fontSize: 11, color: '212121'),
  this.fontName,
  this.paragraphStyle,
  this.header0,
  this.header1,
  this.header2,
  this.header3,
  this.header4,
  this.header5,
  this.tableHeader = const TextStyle(
    color: 'FFFFFF',
    fontWeight: FontWeight.bold,
    fontSize: 10,
  ),
  this.tableCell = const TextStyle(fontSize: 10),
  this.bulletStyle,
});