NoDataView constructor

const NoDataView({
  1. Key? key,
  2. String? title,
  3. bool isListView = false,
  4. double? size,
  5. TextStyle? style,
})

Implementation

const NoDataView({
  Key? key,
  this.title,
  this.isListView = false,
  this.size,
  this.style,
}) : super(key: key);