JuiNoContent constructor

const JuiNoContent({
  1. Key? key,
  2. double paddingTop = 130,
  3. String text = "暂无数据",
  4. required JuiNoContentType type,
  5. String? imagePath,
  6. double imageWidth = 180,
  7. double paddingBottom = 0,
})

Implementation

const JuiNoContent({
  Key? key,
  this.paddingTop = 130,
  this.text = "暂无数据",
  required this.type,
  this.imagePath,
  this.imageWidth = 180,
  this.paddingBottom = 0,
}) : super(key: key);