JJEmptyWidget constructor

const JJEmptyWidget({
  1. Key? key,
  2. String? assetImageStr,
  3. String? detail,
  4. Widget? image,
  5. Widget? text,
  6. double space = 0.0,
  7. JJEmptyType type = JJEmptyType.imageText,
  8. void onTap()?,
})

Implementation

const JJEmptyWidget({
  Key? key,
  this.assetImageStr,
  this.detail,
  this.image,
  this.text,
  this.space = 0.0,
  this.type = JJEmptyType.imageText,
  this.onTap,
  }) : super(key: key);