NiceEmpty constructor

const NiceEmpty({
  1. Key? key,
  2. IconData icon = Icons.inbox_outlined,
  3. String title = 'Brak danych',
  4. String? description,
  5. Widget? action,
})

Implementation

const NiceEmpty({
  super.key,
  this.icon = Icons.inbox_outlined,
  this.title = 'Brak danych',
  this.description,
  this.action,
});