UIProTheme constructor

const UIProTheme({
  1. Key? key,
  2. required UIProThemeData data,
  3. required Widget child,
})

Creates a UIProTheme widget.

The data and child arguments must not be null.

Implementation

const UIProTheme({super.key, required this.data, required super.child});