VEmptyView constructor

const VEmptyView({
  1. Key? key,
  2. EmptyType type = EmptyType.empty,
  3. Image? image,
  4. String? loadingColor,
  5. String? text,
  6. String? reloadBtnTxt,
  7. double space = _space,
  8. VoidCallback? clickCallBack,
  9. String? reloadBtnBgColor,
  10. double reloadBtnTxtFontSize = _btnFontSize,
  11. double infoFontSize = _textFontSize,
  12. String? infoTextColor,
  13. LocaleType? localeType,
  14. String? bgColor,
})

Implementation

const VEmptyView(
    {Key? key, this.type = EmptyType.empty, this.image, this.loadingColor, this.text, this.reloadBtnTxt, this.space = _space, this.clickCallBack, this.reloadBtnBgColor, this.reloadBtnTxtFontSize = _btnFontSize, this.infoFontSize = _textFontSize, this.infoTextColor, this.localeType, this.bgColor})
    : super(key: key);