ZefyrTheme constructor
ZefyrTheme({
- Key? key,
- required ZefyrThemeData data,
- required Widget child,
Applies the given theme data
to child
.
The data
and child
arguments must not be null.
Implementation
ZefyrTheme({
Key? key,
required this.data,
required Widget child,
}) : super(key: key, child: child);