CarpenterDialogCollectionBody constructor

const CarpenterDialogCollectionBody({
  1. Key? key,
  2. required Widget collection,
  3. Widget? header,
  4. String? error,
  5. bool loading = false,
  6. bool unavailable = false,
  7. String unavailableMessage = 'Данные недоступны',
  8. Widget? footer,
})

Implementation

const CarpenterDialogCollectionBody({
  super.key,
  required this.collection,
  this.header,
  this.error,
  this.loading = false,
  this.unavailable = false,
  this.unavailableMessage = 'Данные недоступны',
  this.footer,
});