normalPlaceholderPic property

Widget get normalPlaceholderPic

默认占位图

Implementation

Widget get normalPlaceholderPic {
  if (this.placeholderImgPath != null) {
    return Image.asset(this.placeholderImgPath!);
  }

  if (SilImageInfo.placeholderImgPath != null) {
    return Image.asset(SilImageInfo.placeholderImgPath!);
  }

  return this.defalutWidget;
}