TEmptyWidget constructor

const TEmptyWidget({
  1. Key? key,
  2. String title = "空空如也",
  3. String subTitle = "",
})

Implementation

const TEmptyWidget({
  Key? key,
  this.title = "空空如也",
  this.subTitle = "",
}) : super(key: key);