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