EmptyComponent constructor

const EmptyComponent({
  1. Key? key,
  2. String title = 'Chưa có dữ liệu',
  3. String? subtitle = 'Keep up the good work!',
  4. String? imageUrl,
  5. double? width,
  6. double? height,
})

Implementation

const EmptyComponent({
  super.key,
  this.title = 'Chưa có dữ liệu',
  this.subtitle = 'Keep up the good work!',
  this.imageUrl,
  this.width,
  this.height,
});