BasePlaceholderView constructor

const BasePlaceholderView({
  1. Key? key,
  2. String? title = '暂无数据',
  3. String? image,
  4. VoidCallback? onTap,
})

Implementation

const BasePlaceholderView({
  Key? key,
  this.title = '暂无数据',
  this.image,
  this.onTap,
}) : super(key: key);