EmptyPlaceholder constructor

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

Implementation

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