isPlaceholder property

bool get isPlaceholder

Implementation

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