BambooBreakPoint constructor

const BambooBreakPoint({
  1. Key? key,
  2. required Widget child,
  3. int mobile = 576,
  4. int tablet = 768,
  5. int desktop = 1280,
})

Implementation

const BambooBreakPoint({
  super.key,
  required Widget child,
  this.mobile = 576,
  this.tablet = 768,
  this.desktop = 1280,
}) : super(child: child);