PITheme constructor
const
PITheme({
- Key? key,
- required PIThemeData data,
- required WidgetBuilder builder,
Applies the given theme data to child.
The data and child arguments must not be null.
Implementation
const PITheme({
Key? key,
required this.data,
required this.builder,
}) : super(key: key);