CapturedWrapper constructor

const CapturedWrapper({
  1. Key? key,
  2. CapturedThemes? themes,
  3. CapturedData? data,
  4. required Widget child,
})

Creates a CapturedWrapper.

Parameters:

  • themes (CapturedThemes?, optional): Themes to apply.
  • data (CapturedData?, optional): Data to apply.
  • child (Widget, required): Child widget.

Implementation

const CapturedWrapper({
  super.key,
  this.themes,
  this.data,
  required this.child,
});