PILoadMore constructor

const PILoadMore({
  1. Key? key,
  2. Color? color,
  3. String? noMoreText,
  4. PILoadMoreStatus status = PILoadMoreStatus.none,
  5. String? loadingText,
})

Implementation

const PILoadMore({
  Key? key,
  this.color,
  this.noMoreText,
  this.status = PILoadMoreStatus.none,
  this.loadingText,
}) : super(key: key);