EmptyView constructor

const EmptyView({
  1. String? text,
  2. double textSize = 16,
  3. IconData icon = Icons.list_alt,
  4. Color iconColor = Colors.black,
  5. Color textColor = Colors.black26,
  6. Key? key,
})

Implementation

const EmptyView({
  this.text,
  this.textSize = 16,
  this.icon = Icons.list_alt,
  this.iconColor = Colors.black,
  this.textColor = Colors.black26,
  super.key
});