EmptyPlaceholder constructor

EmptyPlaceholder({
  1. Key? key,
  2. required Widget label,
  3. Widget? description,
  4. Widget? image,
  5. IconData? icon,
  6. Color? iconColor,
  7. List<Widget>? actions,
  8. double? actionsGap,
  9. double? maxHeight,
})

Implementation

EmptyPlaceholder({
  Key? key,
  required this.label,
  this.description,
  this.image,
  this.icon,
  this.iconColor,
  this.actions,
  this.actionsGap,
  this.maxHeight

}){


  assert(image != null || icon != null);

}