ShowEmptyOrWidget constructor

const ShowEmptyOrWidget({
  1. Key? key,
  2. required bool showWidget,
  3. required Widget widget,
})

Implementation

const ShowEmptyOrWidget({
  super.key,
  required this.showWidget,
  required this.widget,
});