PreviewBackgroundWrapper constructor

const PreviewBackgroundWrapper({
  1. Key? key,
  2. required Widget child,
  3. required Color? themedBackgroundColor,
})

Creates a PreviewBackgroundWrapper.

Implementation

const PreviewBackgroundWrapper({
  super.key,
  required this.child,
  required this.themedBackgroundColor,
});