NoDataWidget constructor

const NoDataWidget({
  1. Key? key,
  2. required AppTheme theme,
  3. double height = 250,
  4. String? description,
  5. String? imageRes,
})

Implementation

const NoDataWidget({
  super.key,
  required this.theme,
  this.height = 250,
  this.description,
  this.imageRes,
});