EmptyWidget constructor

const EmptyWidget({
  1. Key? key,
  2. String assetImage = "assets/images/empty_filter_product.png",
  3. String? text,
  4. VoidCallback? onTapReload,
  5. String? textReload,
  6. double assetHeight = 150,
  7. double assetWidth = 220,
  8. double marginText = 10,
})

Implementation

const EmptyWidget({
  Key? key,
  this.assetImage = "assets/images/empty_filter_product.png",
  this.text,
  this.onTapReload,
  this.textReload,
  this.assetHeight = 150,
  this.assetWidth = 220,
  this.marginText = 10,
}) : super(key: key);