DeviceFrameTheme constructor

const DeviceFrameTheme({
  1. Key? key,
  2. required DeviceFrameStyle style,
  3. 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,
      );