NiceShowOnBreakpoint constructor

const NiceShowOnBreakpoint({
  1. Key? key,
  2. required List<NiceBreakpoint> showOn,
  3. required Widget child,
  4. Widget? replacement,
})

Implementation

const NiceShowOnBreakpoint({
  super.key,
  required this.showOn,
  required this.child,
  this.replacement,
});