NoData constructor

const NoData({
  1. Key? key,
  2. String text = 'no_data',
  3. IconData icon = Icons.sentiment_very_dissatisfied,
  4. double iconSize = 42,
  5. double height = 100,
})

Implementation

const NoData({
  super.key,
  this.text = 'no_data',
  this.icon = Icons.sentiment_very_dissatisfied,
  this.iconSize = 42,
  this.height = 100,
});