DivListStatus constructor

const DivListStatus({
  1. Widget? none,
  2. Widget? more,
  3. Widget? noMore,
  4. Widget? loading,
  5. Widget? noData,
  6. TextStyle style = const TextStyle(fontSize: 12),
})

Implementation

const DivListStatus({
  this.none,
  this.more,
  this.noMore,
  this.loading,
  this.noData,
  this.style = const TextStyle(fontSize: 12),
});