NxEmptyWidget constructor

const NxEmptyWidget({
  1. Key? key,
  2. Widget? image,
  3. String? title,
  4. String? description,
  5. String? buttonText,
  6. Color? buttonColor,
  7. VoidCallback? onActionClicked,
  8. bool? isLoading,
  9. Widget? customButtonAction,
  10. EdgeInsetsGeometry? padding,
  11. Color? color,
})

Implementation

const NxEmptyWidget({
  Key? key,
  this.image,
  this.title,
  this.description,
  this.buttonText,
  this.buttonColor,
  this.onActionClicked,
  this.isLoading,
  this.customButtonAction,
  this.padding,
  this.color,
}) : super(key: key);