EmptyViewMessage constructor

const EmptyViewMessage({
  1. required String description,
  2. String? illustrationPath,
  3. TextStyle? descriptionStyle,
  4. String? actionTitle,
  5. VoidCallback? onAction,
  6. Size? illustrationSize,
})

Implementation

const EmptyViewMessage({
  required this.description,
  this.illustrationPath,
  this.descriptionStyle,
  this.actionTitle,
  this.onAction,
  this.illustrationSize,
});