placeholderWidget method

Widget placeholderWidget()

Implementation

Widget placeholderWidget() {
  if (placeholder != null) {
    return Image.asset(placeholder!, width: width, height: height, fit: placeholderFit);
  } else {
    return Container(color: const Color(0xFFEEEEEE));
  }
}