DeviceFrameTheme constructor
const
DeviceFrameTheme({
- Key? key,
- required DeviceFrameStyle style,
- required Widget child,
Give a style
to all descentant in child
device frames.
Implementation
const DeviceFrameTheme({
Key? key,
required this.style,
required Widget child,
}) : super(
key: key,
child: child,
);