CapturedWrapper constructor

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

Implementation

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