PiThemeData constructor

const PiThemeData({
  1. String? debugLabel,
  2. PiColorData? colorTheme,
  3. PiButtonThemeData? piButtonThemeData,
})

Creates a new instance of PiThemeData

Implementation

const PiThemeData({
  String? debugLabel,
  PiColorData? colorTheme,
  PiButtonThemeData? piButtonThemeData,
}) : _debugLabel = debugLabel,
     _colorTheme = colorTheme,
     _piButtonThemeData = piButtonThemeData;