ThemeData constructor

const ThemeData({
  1. ColorScheme colors = const ColorScheme(),
  2. BorderTheme borders = const BorderTheme(),
  3. TextTheme text = const TextTheme(),
})

Implementation

const ThemeData({
  this.colors = const ColorScheme(),
  this.borders = const BorderTheme(),
  this.text = const TextTheme(),
});