CarpenterEmptyStateDescriptor constructor

const CarpenterEmptyStateDescriptor({
  1. required String title,
  2. String? message,
  3. CarpenterEmptyStateKind kind = CarpenterEmptyStateKind.collection,
  4. CarpenterCommand<void>? action,
})

Implementation

const CarpenterEmptyStateDescriptor({
  required this.title,
  this.message,
  this.kind = CarpenterEmptyStateKind.collection,
  this.action,
});