BambooHidden constructor

const BambooHidden({
  1. Key? key,
  2. required Widget child,
  3. bool desktop = true,
  4. bool tablet = true,
  5. bool mobile = true,
  6. bool large = true,
})

Implementation

const BambooHidden({
  super.key,
  required this.child,
  this.desktop = true,
  this.tablet = true,
  this.mobile = true,
  this.large = true,
});