NoDataFound constructor

const NoDataFound({
  1. Key? key,
  2. bool isScaffold = false,
  3. String messageError = '',
  4. String textButton = '',
  5. bool showTextButton = false,
  6. Widget? widgetTop,
  7. Widget? widgetAfter,
  8. VoidCallback? onPressed,
})

Implementation

const NoDataFound({
  super.key,
  this.isScaffold = false,
  //this.isNoInternet=false,
  this.messageError = '',
  this.textButton = '',
  this.showTextButton = false,
  this.widgetTop,
  this.widgetAfter,
  this.onPressed,
});