TDEmpty constructor

const TDEmpty({
  1. TDEmptyType type = TDEmptyType.plain,
  2. Widget? image,
  3. String? emptyText,
  4. String? operationText,
  5. TDTapEvent? onTapEvent,
  6. Key? key,
})

Implementation

const TDEmpty(
    {this.type = TDEmptyType.plain,
      this.image,
      this.emptyText,
      this.operationText,
      this.onTapEvent,
      Key? key})
    : super(key: key);