ListTail constructor

ListTail({
  1. Key? key,
  2. bool? isEmpty,
  3. bool? isLoading,
  4. bool isShowLoadText = false,
  5. Color? color,
})

Implementation

ListTail(
    {Key? key,
    this.isEmpty,
    this.isLoading,
    this.isShowLoadText = false,
    this.color})
    : super(key: key);