isPlaceholder property
bool
get
isPlaceholder
Implementation
bool get isPlaceholder {
final data = _image;
final x = data is String ? data.isEmpty : false;
final y = imageType == ImageType.detect || imageType == ImageType.unknown;
return x || y;
}