PITheme constructor

const PITheme({
  1. Key? key,
  2. required PIThemeData data,
  3. 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);