EmptyFailView constructor

const EmptyFailView({
  1. String tip = "数据加载失败...",
  2. String? imageName,
  3. double imageWidth = 150,
  4. double imageHeight = 150,
  5. dynamic onTap()?,
  6. Key? key,
})

Implementation

const EmptyFailView(
    {this.tip = "数据加载失败...",
    this.imageName,
    this.imageWidth = 150,
    this.imageHeight = 150,
    this.onTap,
    super.key});