ScopeWrapper constructor

const ScopeWrapper({
  1. Key? key,
  2. required Widget wrapped,
  3. bool showGrid = false,
  4. int columnCount = 12,
  5. bool debugBanner = false,
})

Implementation

const ScopeWrapper({
  super.key,
  required this.wrapped,
  this.showGrid = false,
  this.columnCount = 12,
  this.debugBanner = false,
});